Cod sursa(job #89285)
| Utilizator | Data | 6 octombrie 2007 13:45:37 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.13 kb |
#include <fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
main()
{long int a,b;
fin>>a>>b;
fout<<a+b;
}