Cod sursa(job #932244)
| Utilizator | Data | 28 martie 2013 19:49:12 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<fstream>
using namespace std;
int main()
{
int a,b;
ifstream fin("A+B.in");
ofstream fout("A+B.out");
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
return 0;
}
