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