Cod sursa(job #2913685)
| Utilizator | Data | 16 iulie 2022 02:15:48 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
using namespace std;
int main() {
int a, b;
fin >> a >> b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fout << a + b;
return 0;
}