Cod sursa(job #669817)
Utilizator | Data | 27 ianuarie 2012 20:17:08 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<fstream>
using namespace std;
fstream fin("ab.in",ios::in),fout("ab.out",ios::out);
int main()
{
int a,b;
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
return 0;
}