Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129587 叶航帅 08判断区间 Python3 Accepted 66 MS 3768 KB 136 2025-08-29 14:19:02

Tests(10/10):


Code:

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')