Cod sursa(job #2418591)
| Utilizator | Data | 5 mai 2019 16:42:38 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | teme_upb | Marime | 0.21 kb |
#include <iostream>
#include<fstream>
using namespace std;
int main()
{int a,b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a>>b;
fout<<a+b;
fin.close;
fout.close;
return 0;
}
