CSES - Datatähti 2023 alku - Results
Submission details
Task:Kortit
Sender:cppbetter
Submission time:2022-11-06 13:49:14 +0200
Language:C++17
Status:COMPILE ERROR

Compiler report

input/code.cpp:15:2: error: expected unqualified-id before '+' token
   15 | }+
      |  ^

Code

#include <iostream>

int main()
{
    uint32_t count = 0;

    std::cin >> count;

    if (count <= 1) // 0 is allowed
        std::cout << "NO\n";
    else if (count <= 26) // im stupid lol...
        std::cout << "MAYBE\n";
    else
        std::cout << "YES\n";
}+