Cod sursa(job #1343590)
| Utilizator | Data | 15 februarie 2015 17:19:54 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream x("adunare.in");
ofstream y("adunare.out");
int a,b;
x>>a;
x>>b;
y<<a+b;
x.close();
y.close();
return 0;
}
