Color mix

Working at a design studio is exciting. Mixing colors together can produce other interesting colors. The wonderful thing is that any color can be produced as a result of mixing red, green, and blue colors together.
Yet, doing that experiment every time is time-consuming and it would be great to have an automated process that would print the resulting color after mixing different colors together.
notion image
Our task is to automate part of that process and print the resulting color after mixing any of the red, green, and blue colors (The image on the right can be used as a reference).
  • Mixing red and blue results in purple
  • Mixing red and green results in yellow
  • Mixing green and blue results in cyan
 
The program gets as an input 2 colors that the designer wants to mix. Sometimes they do typos or input invalid colors - in that case, the program should print Invalid color. Otherwise, the program should print the result of the mix.
Input
Output
red blue
purple
redd blu
Invalid color
blue blue
blue
 

Constraints

Time limit: 2 seconds

Memory limit: 512 MB

Output limit: 1 MB

To check your solution you need to sign in
Sign in to continue