Cod sursa(job #2943316)

Utilizator ThomasPGeorg Popescu ThomasP Data 20 noiembrie 2022 20:29:02
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <bits/stdc++.h>
#include <fstream>

istream fin ("adunare.in");
ostream fout ("adunare.out");

using namespace std;

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