Problem1045--Range

1045: Range

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

Write a program which reads three integers ab and c, and prints "Yes" if a<b<c, otherwise "No".

Input

Three integers ab 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

Source/Category