/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby, Perl, Prolog, Javascript, Pascal, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include<iostream>
using namespace std;
int main (){
cout << "Red = " << "\033[1;31mO\033[0m\n";
cout << "Blue = " << "\033[1;34mO\033[0m\n";
cout << "Green = " << "\033[1;32mO\033[0m\n";
cout << "Yellow = " << "\033[1;33mO\033[0m\n";
cout << "Cyan = " << "\033[1;36mO\033[0m\n";
cout << "White = " << "\033[1;27mO\033[0m\n";
cout << "Black = " << "\033[1;30mO\033[0m\n";
cout << "Purple = " << "\033[1;35mO\033[0m\n";
return 0;
}