100%AC
2025-07-30 18:22:26
发布于:浙江
8阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int a,b,c;
cin >> a >> b >> c;
if(a == 1 && b == 2) cout << "YES";
else if(a == 1 && c == 3) cout << "YES";
else if(b == 2 && c == 3) cout << "YES";
else cout << "NO";
return 0;
}
这里空空如也
有帮助,赞一个