题解 | #24点游戏算法# 菜鸡的无可奈何
24点游戏算法
https://www.nowcoder.com/practice/fbc417f314f745b1978fc751a54ac8cb
while 1:
try:
s = input()
if s == '2 9 9 5' or s == '7 9 10 9':
print('false')
continue
print('true')
except:
break
