求问
2026-06-17 22:39:46
发布于:浙江
4阅读
0回复
0点赞
如何避免RE
a = int(input())
b = int(input())
c = int(input())
if a == 1 and b == 2 :
print("Yes")
elif a == 1 and c == 3 :
print("Yes")
elif b == 2 and c == 3 :
print("Yes")
else :
print("No")
这里空空如也

有帮助,赞一个