Name coding
Name coding
int main() {
// ANSI escape codes for colors
const string BLUE = "\033[34m"; // Blue color for "R"
const string YELLOW = "\033[33m"; // Yellow color for "I"
const string RED = "\033[31m"; // Red color for "A"
const string RESET = "\033[0m"; // Reset color
return 0;
}