提交时间:2025-07-18 09:15:20

运行 ID: 334330

#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"; else cout<<"no"; return 0; }