提交时间:2024-02-01 18:28:07

运行 ID: 39449

#include<iostream> using namespace std; int main() { int x,y; cin>>x>>y; if(-1<=x&&x<=1&&-1<=y&&y<=1){ cout<<"yes"; } else cout<<"no"; return 0; }