Cod sursa(job #682417)
| Utilizator | Data | 18 februarie 2012 22:59:59 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | teme_upb | Marime | 0.19 kb |
#include<iostream.h>
#include<fstream.h>
int main()
{
int a,b;
ifstream f("adunare.in");
f>>a>>b;
f.close();
ofstream g("adunare.out");
g<<a+b<<endl;
f.close();
return 0;
}