Cod sursa(job #2852759)

Utilizator DanielEParfene Daniel Emanuel DanielE Data 19 februarie 2022 15:13:00
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <bits/stdc++.h>
using namespace std;
ifstream f ("aduna.in");
ofstream g ("aduna.out");
int main() {
    int a, b;
    f >> a >> b;
    g << a + b;
    return 0;
}