Cod sursa(job #2605894)
| Utilizator | Data | 26 aprilie 2020 11:16:53 | |
|---|---|---|---|
| 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;
}
