a,b,c = map(int,input().split());
t = a
if t < b:
    t = b;

if t < c:
    t = c;

print(t)
/**************************************************************
	Problem: 1039
	User: admin
	Language: Python
	Result: Accepted
	Time:98 ms
	Memory:34244 kb
****************************************************************/