easy
2024-10-19 11:43:58
发布于:浙江
2阅读
0回复
0点赞
x,y=input().split()
x=int(x)
y=int(y)
if -1<=y<=1 and -1<=x<=1:
print('yes')
else:
print('no')
全部评论 1
elif 是多余的
2024-10-19 来自 浙江
0
2024-10-19 11:43:58
发布于:浙江
x,y=input().split()
x=int(x)
y=int(y)
if -1<=y<=1 and -1<=x<=1:
print('yes')
else:
print('no')
有帮助,赞一个