Cod sursa(job #2451754)
Utilizator | Data | 28 august 2019 00:30:58 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <bits/stdc++.h>
using namespace std;
int main(){
//freopen("file.in", "r", stdin);
//freopen("file.out", "w", stdout);
int a, b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}