100 atcoder#ABC138A. [ABC138A] Red or Not
[ABC138A] Red or Not
Score : points
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
.
3200
pink
pink
is not less than , so we print pink
.
3199
pink
red
is less than , so we print red
.
4049
red
red
is not less than , so we print red
.