Cod sursa(job #2177734)
| Utilizator | Data | 18 martie 2018 19:45:37 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{int a,b;
fstream f("adunare.in");
fstream g("adunare.out");
f>>a>>b;
g<<a+b;
return 0;
}
