提交时间:2025-11-02 13:45:08
运行 ID: 72666
#include<bits/stdc++.h> using namespace std; int main() { int x,y; cin>>x>>y; bool wh=(x>=-1&&x<=1&&y>=-1&&y<=1); if(wh) { cout<<"yes"; } else { cout<<"no"; } return 0; }