题解
2024-04-29 19:16:16
发布于:北京
1阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int a,b,c;
cin >> a >> b >> c;
if(a == 1 and b == 1 and c == 1){
cout << "Yes";
}
else{
cout << "No";
}
return 0;
}
这里空空如也
有帮助,赞一个