Cod sursa(job #171225)
Utilizator | Data | 3 aprilie 2008 21:39:05 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
##include<fstream.h>
#include<conio.h>
main()
{
int a,b;
cout<<"a=";cin>>a;
cout<<"b=";cin>>b;
ofstream f("c:\adunare.out");
f<<"suma celor doua numere "<<a+b;
f.close();
}