#!/bin/csh

if( $1 > $2 ) then
  set rv = $2
else
  set rv = $1
endif

echo $rv

exit 0
