Pagini recente » Cod sursa (job #954822) | Cod sursa (job #1155420) | Cod sursa (job #2575785) | Cod sursa (job #316896) | Cod sursa (job #2418609)
#include <bits/stdc++.h>
using namespace std;
typedef unsigned long long ull;
typedef signed long long ll;
typedef unsigned int uint;
typedef unsigned char uchar;
const int nmax = 1e5;
int main() {
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
ios::sync_with_stdio(false);
cin.tie(NULL);
int a, b;
cin >> a >> b;
cout << a + b << "\n";
return 0;
}