Cod sursa(job #160601)
Utilizator | Data | 16 martie 2008 12:37:18 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.12 kb |
#include<fstream.h>
void main()
{
fstream g("adunare.out",ios::out);
long int a,b,s=0;
cin>>a>>b;
s=a+b;
g>>s;
}