Cod sursa(job #490262)
Utilizator | Data | 5 octombrie 2010 19:02:01 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
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;
}