#P9516. Luogu Name Color Determination

    ID: 22665 Type: Default 1000ms 256MiB

Luogu Name Color Determination

Luogu Name Color Determination

The color of a Luogu user's name is directly linked to the scores of their five G-value indicators. Given the five scores, determine the user's name color using the formula:

Let \(S = s_1+s_2+s_3+s_4+s_5\). Then:

  • If \(S < 600\), the name color is Green.
  • If \(600 \le S < 1000\), the name color is Blue.
  • If \(S \ge 1000\), the name color is Red.

It is guaranteed that the input user is neither a brown-named nor a purple-named user.

Refer to the Luogu G-value System Introduction for more details.

inputFormat

The input consists of a single line containing five space-separated integers representing the five G-value scores.

outputFormat

Output a single line containing the name color of the user (Green, Blue, or Red).

sample

100 100 100 100 100
Green