#include
int main()
{
char s[200],*p,*q;
gets(s);
for(p=q=s;*p;p++)
if(*p>*q)q=p;
printf("最大的字符是%c\n",*q);
return 0;
}