题解
2023-09-17 09:07:19
发布于:广东
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x,y;
cin >> x >> y;
if (x<=1 && x>=-1 && y<=1 && y>=-1)
cout << "yes";
else
cout << "no";
return 0;
}
这里空空如也
有帮助,赞一个