Cod sursa(job #1430233)
Utilizator | Data | 8 mai 2015 00:11:31 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.17 kb |
#include <fstream>
int main()
{
int a, b;
ifstream f("adunare.in");
f >> a >> b;
f.close();
ofstream g("adunare.out");
g << a + b;
g.close();
return 0;
}