Cod sursa(job #2178129)
| Utilizator | Data | 19 martie 2018 10:14:30 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
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;
}