#include <iostream>
#include <string>

#if defined(_WIN32)

std::string OS()
{
    return "Windows";
}

#elif defined(__linux__)

std::string OS()
{
    return "Linux";
}

#endif


int main()
{
    std::cout << OS();
}
