Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
107923 伍长辉 08判断区间 Python3 Wrong Answer 40 MS 3772 KB 106 2025-01-18 19:14:34

Tests(0/10):


Code:

a,x,y=input().split() a=int(a) x=int(x) y=int(y) if y>=a>=x: print('Yes') else: print('no')


Run Info:

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