Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
68080 金浩 收集瓶盖赢大奖 Python3 Accepted 40 MS 3776 KB 150 2024-03-19 08:04:07

Tests(10/10):


Code:

n=int(input()) for i in range(n): a,b=map(int,input().split()) if a>=10 or b>=20: print("True") else: print("False")