Problem B: Branch on Condition - Range

"
Time Limit $1$ 秒/Second(s) Memory Limit $512$ 兆字节/Megabyte(s)
提交总数 $1712$ 正确数量 $726$
裁判形式 标准裁判/Standard Judge 我的状态 尚未尝试
难度 分类标签 分支

Range 

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
0 ≤ a, b, c ≤ 100