#include int main() { int a,b,c,tem; scanf("%d%d%d",&a,&b,&c); tem=a; if(a c){ tem = b; } else{ tem = c; } } printf("%d eh o maior\n",tem); return 0; }