Cod sursa(job #591426)
| Utilizator | Data | 24 mai 2011 09:14:43 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.34 kb |
using namespace std;
#include <fstream>
#include <iostream>
int main()
{
unsigned long int a = 0, b = 0, c = 0;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin >> a >> b;
c = a + b;
fout << c << "\n";
fin.close();
fout.close();
return 0;
}
