Cod sursa(job #1126711)
Utilizator | Data | 27 februarie 2014 09:18:01 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long A, B;
fin >> A >> B;
fout << A + B;
fin.close();
fout.close();
return 0;
}