Cod sursa(job #1190441)
| Utilizator | Data | 25 mai 2014 13:08:51 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | itmarathon | Marime | 0.24 kb |
#include <iostream>
#include<fstream>
using namespace std;
int a,b;
int main()
{
ifstream f("adunare.in.txt");
f>>a;
f>>b;
ofstream g("adunare.out.txt");
g<<a+b;
f.close();
g.close();
return 0;
}
