Cod sursa(job #2065874)
Utilizator | Data | 14 noiembrie 2017 13:51:31 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include "fstream"
ifstream f("adunare.in");
ofstream g("odunare.out");
int main()
{
long int a, b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 1;
}