#! /bin/csh -f
#
#  input argument is validated yy code (btw 0 and 99)
#
#  output:  echo w/ leading zero if code is <9; otherwise just echo as is
#
  if ( $1 < 10 ) then
    echo "0$1"
  else
    echo $1
  endif
