Cod sursa(job #2676864)

Utilizator redstonegamer22Andrei Ion redstonegamer22 Data 25 noiembrie 2020 09:53:53
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <bits/stdc++.h>

using namespace std;

#ifdef INFOARENA

ifstream in("adunare.in");
ofstream out("adunare.out");

#define cin in
#define cout out

#endif

int main()
{
    long long a, b; cin >> a >> b;
    long long sum = a + b;
    cout << sum;
}