Cod sursa(job #2259144)

Utilizator AlexPop28Pop Alex-Nicolae AlexPop28 Data 13 octombrie 2018 09:15:41
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Lista lui wefgef Marime 0.21 kb
#include <bits/stdc++.h>

using namespace std;

int main () {
    int a, b;
    ifstream f ("adunare.in");
    ofstream g ("adunare.out");
    f >> a >> b;
    g << a + b << '\n';

    return 0;
}