#include<iostream> int main(){ int a,b,c,t; scanf("%d %d %d",&a,&b,&c); if(a>b) t=a; else t=b; if(t>c) t=t; else t=c; printf("%d",t); return 0; }