Cod sursa(job #2718348)
Utilizator | Data | 8 martie 2021 18:07:00 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{ int A,B;
fin>>A>>B;
fout <<A+B<< endl;
return 0;
}