Cod sursa(job #2673649)

Utilizator Apyxabcdefghij Apyx Data 17 noiembrie 2020 13:45:29
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <bits/stdc++.h>

using namespace std;

ifstream fin("suma.in");
ofstream fout("suma.out");

int main()
{
    int a, b;
    fin >> a;
    fin >> b;
    fout << a + b;
    return 0;
}