#abc138a. [abc138_a]Red or Not

[abc138_a]Red or Not

Problem Statement

You will be given an integer aa and a string ss consisting of lowercase English letters as input.

Write a program that prints ss if aa is not less than 32003200 and prints red if aa is less than 32003200.

Constraints

  • 2800leqa<50002800 \\leq a < 5000
  • ss is a string of length between 11 and 1010 (inclusive).
  • Each character of ss is a lowercase English letter.

Input

Input is given from Standard Input in the following format:

aa ss

Output

If aa is not less than 32003200, print ss; if aa is less than 32003200, print red.


Sample Input 1

3200
pink

Sample Output 1

pink

a=3200a = 3200 is not less than 32003200, so we print s=s = pink.


Sample Input 2

3199
pink

Sample Output 2

red

a=3199a = 3199 is less than 32003200, so we print red.


Sample Input 3

4049
red

Sample Output 3

red

a=4049a = 4049 is not less than 32003200, so we print s=s = red.