Cod sursa(job #198541)
Utilizator | Data | 12 iulie 2008 13:00:09 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <fstream>
using namespace std;
main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long a,b;
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
}