#!/bin/ksh
if [ $LASTCC -gt $MAXCC ]
then
	echo $LASTCC
else
	echo $MAXCC
fi
exit 0
