Score : $100$ points
You will be given an integer $a$ and a string $s$ consisting of lowercase English letters as input.
Write a program that prints $s$ if $a$ is not less than $3200$ and prints red
if $a$ is less than $3200$.
Input is given from Standard Input in the following format:
$a$ $s$
If $a$ is not less than $3200$, print $s$; if $a$ is less than $3200$, print red
.
3200 pink
pink
$a = 3200$ is not less than $3200$, so we print $s =$ pink
.
3199 pink
red
$a = 3199$ is less than $3200$, so we print red
.
4049 red
red
$a = 4049$ is not less than $3200$, so we print $s =$ red
.