Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92937 Hope 08判断区间 Python3 Accepted 44 MS 3760 KB 133 2024-10-07 10:08:14

Tests(10/10):


Code:

s = input().split() s = list(map(int, s)) a = s[0] x = s[1] y = s[2] if x <= a <= y: print("yes") else: print('no')