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

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