Cod sursa(job #1339385)
| Utilizator | Data | 10 februarie 2015 21:05:04 | |
|---|---|---|---|
| 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("numere.out");
f>>A>>B;
g<<A+B;
f.close();
g.close();
}
