Cod sursa(job #1517349)
Utilizator | Data | 4 noiembrie 2015 09:22:42 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
long long a, b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a>>b;
fout<<a+b;
fout.close();
return 0;
}