by CodeChum Admin
There's always going to be that odd one out. In this case, it's the one with the smallest value. It's your job to determine which one that is!
Instructions:
Input
A line containing three integers separated by a space.
10·5·-5
Output
A line containing an integer.
-5
a, b, c = input().split()
m = int(a)
if int(b) < m:
m = int(b)
if int(c) < m:
m = int(c)
print(m)
Comments
Leave a comment