Cod sursa(job #2446488)
Utilizator | Data | 9 august 2019 07:32:32 | |
---|---|---|---|
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()
{
int a,b;
long long s;
fin >> a >> b;
s=a+b;
fout<<s;
fin.close();
fout.close();
return 0;
}