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 integers in different lines (one each line).
- Print out the integers in one line.
- If the 1st integer is greater than or equal to both the 2nd integer and the 3rd integer, print "Yes".
Instructions
- Input three integers in different lines (one each line).
- Print out the integers in one line.
- If the 1st integer is greater than or equal to both the 2nd integer and the 3rd integer, print "Yes".
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