Cod sursa(job #2495543)
Utilizator | Data | 19 noiembrie 2019 16:54:52 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include<fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
long long a,b,c;
fin>>a>>b;
fin.close();
c=1ll*(a+b);
fout<<c;
fout.close();
return 0;
}