...
2023-08-19 13:49:56
发布于:广东
3阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int a , b , c;
cin >> a >> b >> c;
if(a + b == c) cout << "YES";
else cout << "NO";
return 0;
}
全部评论 1
666
2023-08-19 来自 广东
0
2023-08-19 13:49:56
发布于:广东
#include<bits/stdc++.h>
using namespace std;
int main(){
int a , b , c;
cin >> a >> b >> c;
if(a + b == c) cout << "YES";
else cout << "NO";
return 0;
}
有帮助,赞一个