Cod sursa(job #2605893)
Utilizator | Data | 26 aprilie 2020 11:15:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int A,B,S;
S=A+B;
fin>>A>>B;
fout<<S;
fin.close();
fout.close();
return 0;
}