#include
#include
void main()
{
int x,max; char str[30];
scanf("%d",&x); max=x; //输入第1个数,当作最大值
while ( 1 ) //不断循环
{ scanf("%s",str); //输入新的字符串
if ( str[0]=='e' && str[1]=='n' && str[2]=='d' ) break; //如果输入的是"end"则跳出循环
sscanf(str,"%d",&x); //从str字符串输入一个整数给x
if ( max
printf("%d\n",max); //输出最大值
}