Write a program that reads a pair of numbers and prints if they are in strict increasing order. In other words, if the second number is greater than the first.
Input will consist of a pair of numbers x and y where
0 ≤ x, y ≤ 100 000.
Output should contain a single line with either Yes
or No
indicating whether x < y.
1 3
Yes
10 9
No
try first: oddeven1
Copyright © 2020-2022 Rudy Matela
This text is available under the CC BY-SA 4.0 license.
Originally available on cscx.org/order1