Cod sursa(job #1006829)
Utilizator | Data | 7 octombrie 2013 20:19:25 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include<fstream>
using namespace std;
int main()
{ifstream f1("adunare.in");
int a,b;
f1>>a>>b;
f1.close();
ofstream f2("adunare.out");
f2<<a+b;
f2.close();
return 0;
}