Cod sursa(job #2853791)
Utilizator | Data | 20 februarie 2022 17:09:23 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <bits/stdc++.h>
using namespace std;
int main() {
fstream f;
f.open("aduna.in", ios::in);
fstream g;
g.open("aduna.out", ios::out);
int a, b;
f >> a >> b;
g << a + b;
f.close();
g.close();
return 0;
}