Cod sursa(job #1072378)
| Utilizator | Data | 4 ianuarie 2014 13:26:23 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
long a,b;
fin>>a;
fin>>b;
fout<<a+b<<endl;
fin.close();
fout.close();
return 0;
}
