题解
2024-07-29 20:20:25
发布于:浙江
10阅读
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;
}
这里空空如也
有帮助,赞一个