Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
94326 | 王晨鑫 | 08判断区间 | Python3 | Wrong Answer | 34 MS | 3764 KB | 126 | 2024-10-20 11:47:51 |
q=input().split() a=q[0] b=q[1] c=q[2] a=int(a) c=int(c) b=int(b) if b<=a>=c: print("yes") else: print("no")
------Input------
33 9 76
------Answer-----
yes
------Your output-----
no