Cod sursa(job #1560102)
Utilizator | Data | 1 ianuarie 2016 18:53:20 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long int a,b;
fin>>a>>b;
fout<<a+b;
fout.close();
fin.close();
return 0;
}