1013 - The Greatest - URI Online Judge
Problem name: 1013 - The Greatest
Judge: URI Online Judge
Problem link: 1013 The Greatest
Solution on GitHub: 1013 The Greatest
URI Online Judge 1013 - The Greatest Solution in Python
values = list(map(int, input().split()))
a = values[0]
b = values[1]
s = values[2]
maximum = a
for x in values:
if x > maximum:
maximum = x
print(maximum, "eh o maior")
