提交时间:2020-08-05 11:01:56

运行 ID: 5488

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