提交时间:2025-07-18 09:11:10
运行 ID: 334328
#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; }