Cod sursa(job #2911672)

Utilizator somethingforeveryoneMatei Gabriel somethingforeveryone Data 1 iulie 2022 08:22:38
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.13 kb
#include <iostream>

using namespace std;
int a, b;

int main()
{
    cin >> a >> b;
    cout << a + b;

    return 0;
}