#include int main(){int a,b,c,max; scanf("%d%d%d",&a,&b,&c); max=a>b?a:b; if(c>max)max=c; printf("最大的数是%d\n",max); return 0;}