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