Cod sursa(job #1119554)
| Utilizator | Data | 24 februarie 2014 18:26:44 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream>
#include<fstream>
using namespace std;
ifsteam f ("adunare.in");
ofstream g("adunare.out");
int main()
{
int a,b;
f>>a>>b;
g<<a+b;
}