Cod sursa(job #233230)
| Utilizator | Data | 17 decembrie 2008 10:51:23 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream.h>
long a,b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
fin >> a;
fin >> b;
fout << a+b;
return 0;
}
