by CodeChum Admin
They say that the one in first place is always greater than the one in the second and third place. Are they always right?
Instructions:
Input
Three lines containing an integer on each.
3
2
1
Output
The first line contains all the three inputted integers.
The second line contains a string which is the result.
3·2·1
Yes
num1 = input()
num2 = input()
num3 = input()
print(f"{num1} {num2} {num3}")
if num1 >= (num2 + num3):
print("Yes")
else:
print("No")
Comments
Leave a comment