Run ID:131729

提交时间:2025-10-01 11:15:27

a,x,y = input().split() a = int(a) x = int(x) y = int(y) if a >= x: if a <= y: print("yes") else: print("no") else: print("no")