| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 131726 | 叶航帅 | 08判断区间 | Python3 | Wrong Answer | 62 MS | 3740 KB | 167 | 2025-10-01 11:14:24 |
a,x,y = input().split() a = int(a) x = int(x) y = int(y) if x >= a: if x <= y: print("yes") else: print("no") else: print("no")
------Input------
33 9 76
------Answer-----
yes
------Your output-----
no