
The only line of input contains three space-separated integers.
The only line of the output prints the largest integer.
Take input in 3 variables, a, b and c suppose.
Now,
if (a ≥ b && a ≥ c ) print a
else if ( b≥ a && b ≥ c) print b
else print c .