Cod sursa(job #477090)
| Utilizator | Data | 13 august 2010 13:05:10 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main() {
ofstream fout ("adunare.out");
ifstream fin ("adunare.in");
int a, b;
fin >> a >> b;
fout << a+b << endl;
return 0;
}
