Cod sursa(job #1842345)
| Utilizator | Data | 6 ianuarie 2017 20:44:48 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a,b;
ifstream f("numere.in");
ofstream g("suma.out");
f>>a;
f>>b;
g<<a+b<<endl;
return 0;
}
