Cod sursa(job #2734293)
Utilizator | Data | 31 martie 2021 17:44:13 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
int a, b, s;
fin >> a >> b;
s = a + b;
fout << s;
fin.close();
fout.close();
return 0;
}