Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94110 余泽越 08判断区间 Python3 Wrong Answer 35 MS 3736 KB 127 2024-10-19 19:18:57

Tests(0/10):


Code:

a = input().split() b = int(0) c = int(1) d = int(2) if b >= c and b<= d: print("Yes") else: print("No")


Run Info:

------Input------
33 9 76
------Answer-----
yes
------Your output-----
No