Cod sursa(job #1125997)
Utilizator | Data | 26 februarie 2014 20:41:28 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream fin("a+b.in");
ofstream fout("a+b.out");
int n, i, a, b;
int main()
{fin>>a>>b;
fout<<a+b;
fout.close();
return 0;
}