Cod sursa(job #1396559)
| Utilizator | Data | 22 martie 2015 18:08:55 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include<fstream>
using namespace std;
ifstream f;
ofstream g;
main()
{
int a,b;
f.open("adunare.in");
g.open("adunare.out");
f>>a>>b;
g<<a+b<<endl;
}
