Cod sursa(job #5802)
| Utilizator | Data | 15 ianuarie 2007 09:19:29 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <fstream.h>
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long int a,b;
fin>>a>>b;
fout<<a+b;
return 0;
}