Cod sursa(job #2178128)
| Utilizator | Data | 19 martie 2018 10:13:51 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <iostream>
using namespace std;
ofstream fout("adunare.out");
ifstream fin("adunare.in");
int main(){
long long a, b;
cin >> a >> b;
cout << a + b;
return 0;
}