Cod sursa(job #2792671)
Utilizator | Data | 2 noiembrie 2021 10:07:24 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("sum.in");
ofstream fout("sum.out");
int main()
{
int a,b, s;
fin >> a >> b;
fin.close();
s = a + b;
fout <<s;
fout.close();
return 0;
}