Cod sursa(job #526124)
Utilizator | Data | 27 ianuarie 2011 15:05:49 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream.h>
#include <fstream.h>
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long int a, b;
fin>>a;
fin>>b;
fout<<a+b;
fin.close();
fout.close();
return 1;
}