提交时间:2025-07-18 09:12:08
运行 ID: 334329
#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; }