Computer Science, asked by snakshyashree5, 19 days ago

In a competition, the position secured by a student in the first round is X, in the second round is Y and in the final
round is Z. If the position is in decreasing order, then print WINNER as the output. Else the program must print
RUNNER as the output.
Note: X, Y and Z can be of either 1, 2 or 3.
Example Input/Output 1:
Input:
321
Output:
WINNER
Example Input/Output 2:
Input:
333
Output:
RUNNER​

Answers

Answered by BhootonKiMissWorld
3

Answer:

Atmosphere is the thin layer of air that surrounds the earth. It is made up of various gases such as oxygen, nitrogen, carbon dioxides, dust particles and water vapour. The gravitational force of the earth holds the atmosphere around it.

Answered by loke20119ee
1

Answer:

if(x>y && y> z)

printf("Winner");

Attachments:
Similar questions