Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94112 余泽越 08判断区间 Python3 Accepted 37 MS 3764 KB 136 2024-10-19 19:21:08

Tests(10/10):


Code:

a = input().split() b = int(a[0]) c = int(a[1]) d = int(a[2]) if b >= c and b<= d: print("yes") else: print("no")