10 20 30
30
#include<stdio.h>
main()
{
int
x,a,b,c;
scanf
(
"%d%d%d"
,&a,&b,&c);
x=a>b?a:b;
x=x>c?x:c;
printf
"%d"
,x);
}