C++ submissions compile with g++ -O2 -std=c++17. Output checking is case-insensitive unless the problem statement says otherwise.
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int a;
int b;
cin >> a >> b;
cout << (a + b) << '\n';
return 0;
}