#include <iostream>#include <cstdlib>#include <windows.h>using namespace std;int main(){ system("color 02"); Sleep(1000); while(1){ cout << rand() % 2 << ' '; } return 0;}