B.py 104 B

1234567
  1. import math
  2. a, b,c= map(int, input().strip().split())
  3. if a<b<c:
  4. print('Yes')
  5. else:
  6. print('No')