Cod sursa(job #669995)
| Utilizator | Data | 28 ianuarie 2012 09:42:09 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Lista lui wefgef | Marime | 0.21 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main()
{int A,B;
ifstream F("adunare.in",ios::in);
ofstream G("adunare.out",ios::out);
F>>A;
F>>B;
G<<A+B;
F.close();
G.close();
return 0;
}
