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:
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("Please write first number: ")
num2 = input("Please write second number: ")
num3 = input("Please write third number: ")
all_num = num1, num2, num3
print(all_num)
if num1 >= num2 and num1 >= num3:
print("Yes")
else:
print("No")
Comments
Leave a comment