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