#abc138a. [abc138_a]Red or Not
[abc138_a]Red or Not
Problem Statement
You will be given an integer and a string consisting of lowercase English letters as input.
Write a program that prints if is not less than and prints red
if is less than .
Constraints
- is a string of length between and (inclusive).
- Each character of is a lowercase English letter.
Input
Input is given from Standard Input in the following format:
Output
If is not less than , print ; if is less than , print red
.
Sample Input 1
3200
pink
Sample Output 1
pink
is not less than , so we print pink
.
Sample Input 2
3199
pink
Sample Output 2
red
is less than , so we print red
.
Sample Input 3
4049
red
Sample Output 3
red
is not less than , so we print red
.