Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
94179 | 徐盛熠 | 08判断区间 | Python3 | Wrong Answer | 33 MS | 3752 KB | 144 | 2024-10-19 20:45:14 |
c=input().split() a=c[0] a=int(a) b=c[1] x=c[2] x=int(x) b=int(b) if a<=b and a>=x and x>b : print("Yes") else : print("No")
------Input------
33 9 76
------Answer-----
yes
------Your output-----
No