Cod sursa(job #1405534)
| Utilizator | Data | 29 martie 2015 12:50:13 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream F("adunare.in");
ofstream G("adunare.out");
int a,b;
F>>a>>b;
G<<a+b;
return 0;
}
