Untitled
unknown
plain_text
2 years ago
170 B
6
Indexable
#include <iostream>
using namespace std;
int main()
{
int a, b, c;
cin >> a >> b >> c;
int d = a + b;
if (c = d) {
cout << "YES";
}
else cout << "NO";
}Editor is loading...
Leave a Comment