Cod sursa(job #2872372)
Utilizator | Data | 16 martie 2022 21:29:08 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <fstream>
using namespace std;
fstream fin("adunare.in", ios::in), fout("adunare.out", ios::out);
int main(){
int a, b;
fin >> a >> b;
fin.close();
fout << a+b;
fout.close();
}