Write a program which reads three integers a, b and c, and prints "Yes" if a < b < c, otherwise "No".
Three integers a, b and c separated by a single space are given in a line.
Print "Yes" or "No" in a line.
1 3 8
Yes
3 8 1
No