Cod sursa(job #94506)
Utilizator | Data | 23 octombrie 2007 14:54:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream.h>
int main()
{
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
long a,b;
fin>>a>>b;
fout<<"Suma este:"<<a+b;
return 0;
}