Cod sursa(job #3306024)

Utilizator PopRadGabPopescu Radu Gabriel PopRadGab Data 6 august 2025 19:25:28
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.12 kb
#include <iostream>
using namespace std;

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