Cod sursa(job #169816)
Utilizator | Data | 1 aprilie 2008 23:11:50 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream.h>
int main(void) {
ifstream fin("aduanre.in");
long a, b;
fin>>a>>b;
fin.close();
ofstream fout("adunare.out");
fout<<(a + b);
fout.close();
return 0;
}