Cod sursa(job #3348421)

Utilizator DavideAlb_Davide Alb DavideAlb_ Data 21 martie 2026 19:14:49
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <bits/stdc++.h>
using namespace std;

int main () {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    long long a, b;
    cin >> a >> b;

    cout << a+b << endl;
    return 0;
}