题解 | #不低于与不超过#
不低于与不超过
https://www.nowcoder.com/practice/0be51146e30f4fa0ad1a6aac9078c1af
k,x,y=input().split()
print('True' if float(k)<=float(x) else 'False')
print('True' if float(k)>=float(y) else 'False')
不低于与不超过
https://www.nowcoder.com/practice/0be51146e30f4fa0ad1a6aac9078c1af
k,x,y=input().split()
print('True' if float(k)<=float(x) else 'False')
print('True' if float(k)>=float(y) else 'False')
相关推荐