#!/bin/csh

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

echo $rv

exit 0
