4 12 7
12
a, b, c = map(int, input().split()) max_v = a if b > max_v: max_v = b if c > max_v: max_v = c print(max_v)