Cod sursa(job #715486)
| Utilizator | Data | 17 martie 2012 12:34:42 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Lista lui wefgef | Marime | 0.17 kb |
#include <fstream>
using namespace std;
int main()
{
long a, b;
ifstream fin("sum.in");
ofstream fout("sum.out");
fin>>a >>b;
fout<<a+b;
return 0;
}