Cod sursa(job #3316988)

Utilizator Tudi10Goina Tudor David Tudi10 Data 21 octombrie 2025 16:49:29
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.15 kb
#include <bits/stdc++.h>

using namespace std;

int main()
{
    int a,b;
    cin >> a;
    cin >> b;
    cout << a+b;
    
    return 0;
}