Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
300132 | 李南笙 | 【C1-8】兑换奖品 | Python3 | 通过 | 100 | 53 MS | 3740 KB | 180 | 2024-11-15 19:35:17 |
n,m=input().split() n =int(n) m =int(m) if n>=15 and m>=10: print("YES") elif n>=25: print("YES") elif m>=30: print("YES") else: print("NO")