提交时间:2025-12-26 14:19:31
运行 ID: 77503
#include <bits/stdc++.h> using namespace std; int main() { int a,b; cin >> a >> b; if(-1<=a<=1&&-1<=b<=1) { cout << "yes"; } else { cout << "no"; } return 0; }