Run ID:129587
提交时间:2025-08-29 14:19:02
a,b,c = input().split() a = int(a) b = int(b) c = int(c) if a >= b and a <= c: print('yes') else: print('no')