#include <iostream>
#include <string>
#include <random>
int main()
{
std::random_device rd;
std::mt19937 gen(rd());
std::uniform_int_distribution<> dis(0, 1);
for (int i = 0; i < 50; ++i) {
std::string color;
if (dis(gen) == 0) {
color = «red»;
} else {
color = «blue»;
}
std::cout << color << '\n';
}
return 0;
}