Cod sursa(job #1656028)
Utilizator | Data | 18 martie 2016 17:23:43 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
std::ifstream f("adunare.in");
std::ofstream g("adunare.out");
int main()
{
long int a, b;
f >> a >> b;
g << a + b;
f.close();
g.close();
return 1;
}