Cod sursa(job #559488)
| Utilizator | Data | 17 martie 2011 21:04:32 | |
|---|---|---|---|
| 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()
{
int a,b;
ifstream ain("adunare.in");
ofstream aout("adunare.out");
ain>>a>>b;
aout<<a+b;
ain.close();
aout.close();
return 0;
}