Cod sursa(job #1126032)
Utilizator | Data | 26 februarie 2014 20:51:05 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream fin("a+b.in");
ofstream fout("a+b.out");
long a, b, s;
int main()
{fin>>a>>b;
s=a+b;
fout<<s;
fout.close();
return 0;
}