#include #include int main() { std::random_device seed; std::mt19937 rand(seed()); std::cout << rand() % 2 << '\n'; }