Cod sursa(job #94504)
| Utilizator | Data | 23 octombrie 2007 14:52: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;
}
