Cod sursa(job #1066263)
| Utilizator | Data | 24 decembrie 2013 13:22:14 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
#include <algorithm>
using namespace std;
int main()
{
ifstream fin("a+b.txt");
ofstream fout("adunare.out");
int a, b;
fin>>a>>b;
fout<<a+b;
return 0;
}
