..

tpx041  •  11个月前


include<bits/stdc++.h>

using namespace std; int main(){

int x,y;
cin>>x>>y;
if(-1<=x && x<=1 && -1<=y && y<=1)
cout<<"Yes\n";
else
cout<<"No\n";

return 0;}

评论: