Cod sursa(job #2922036)
Utilizator | Data | 3 septembrie 2022 06:32:33 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.42 kb |
/*
Jai Shri Ram
*/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
void solve() {
long long a, b;
cin >> a >> b;
cout << (a + b) << endl;
}
int main() {
#ifndef ONLINE_JUDGE
freopen("adunare.txt", "r", stdin);
freopen("adunare.txt", "w", stdout);
#endif
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int T;
T = 1;
//cin >> T;
while (T--) {
solve();
}
}