Cod sursa(job #664078)
Utilizator | Data | 19 ianuarie 2012 16:36:56 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
using namespace std;
ifstream fin("test.in");
ofstream fout("test.out");
int a, b;
int main()
{
fin >> a >> b;
fout << a+b << '\n';
fin.close();
fout.close();
return 0;
}