#include <stdio.h> int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); int max=b; if(a>b) max=a; if(c>max) max=c; printf("%d",max); return 0; }