a,b,c=map(int,input().split())
# d=(a+b+c)%200
# if d<100:
# print("대박")
# else:
# print("그럭저럭")
# a,b,c=map(int,input().split())
# if a>170 and b>170 and c>170:
# print("PASS")
# else:
# print("CRASH")
# t,s=map(int,input().split())
# if t>=85:
# print(s+1)
# elif (90-t)%5==0:
# print((90-t)//5+s)
# else:
# print((90-t)//5+s+1)
# y=int(input())
# if y%400==0:
# print("Leap")
# elif y%4==0 and y%100!=0:
# print("Leap")
# else:
# print("Normal")
# a,b,c=map(int,input().split())
# if a>b and a>c:
# if c>b:
# print(c)
# else:
# print(b)
# elif b>a and b>c:
# if a>c:
# print(a)
# else:
# print(c)
# elif c>a and c>b:
# if a>b:
# print(a)
# else:
# print(b)
# else:
# print(a)



