#include <iostream> 
#include <stdlib.h> 
using namespace std; 
  
// Driver Code 
int main() 
{ 
    // Print any message 
    cout << "Geeks For Geeks!"; 
  
    // We can print the statement first 
    // and then changed the color 
  
    // E for background Color(Light Yellow) 
    // 4 for text color(Red) 
    system("Color E4"); 
  
    return 0; 
}