Cod sursa(job #617546)
| Utilizator | Data | 15 octombrie 2011 00:09:00 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include<iostream>
#include<fstream>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
using namespace std;
int main()
{ long a,b;
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
return 0;
}