1045: Range
[Creator : ]
Description
Write a program which reads three integers a, b and c, and prints "Yes" if a<b<c, otherwise "No".
Input
Three integers a, b and c separated by a single space are given in a line.
Output
Print "Yes" or "No" in a line.
Sample Input Copy
1 3 8
Sample Output Copy
Yes