Cod sursa(job #223579)
| Utilizator | Data | 28 noiembrie 2008 21:18:24 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream.h>
long int a, b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
fin>>a;
fin>>b;
fout<<a+b;
fin.close();
fout.close();
return 0;
}
