Cod sursa(job #79242)
Utilizator | Data | 21 august 2007 13:54:43 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
using namespace std;
int main() {
long a,b;
fstream fin("adunare.in", ios::in);
fstream fout("adunare.out", ios::out);
fin>>a>>b;
fout<<(a+b);
fin.close();
fout.close();
return 0;
}