Cod sursa(job #2783638)

Utilizator AlexandruGabrielAliciuc Alexandru AlexandruGabriel Data 14 octombrie 2021 20:20:48
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <bits/stdc++.h>

using namespace std;


/// fara 0/100 puncte challenge
int a, b;

int main()
{
    cin >> a >> b;
    if (a >= 500)
        cout << 0;
    else
    {
        cout << a + b;
    }

    return 0;
}