Cod sursa(job #2341019)
Utilizator | Data | 11 februarie 2019 15:04:46 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-32 | Status | done |
Runda | sem2_1 | Marime | 0.16 kb |
#include "fstream.h"
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
long int a,b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 1;
}