Cod sursa(job #1874524)
Utilizator | Data | 10 februarie 2017 08:24:20 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.13 kb |
#include <fstream.h>
int main()
{ifstream f("adunare.in");
ofstream g("adunare.out");
long a,b;
f>>a>>b;
g<<a+b;
return 0;
}