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