{"raw_statement":[{"iden":"problem statement","content":"You will be given an integer $a$ and a string $s$ consisting of lowercase English letters as input.\nWrite a program that prints $s$ if $a$ is not less than $3200$ and prints `red` if $a$ is less than $3200$."},{"iden":"constraints","content":"*   $2800 \\leq a < 5000$\n*   $s$ is a string of length between $1$ and $10$ (inclusive).\n*   Each character of $s$ is a lowercase English letter."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$a$\n$s$"},{"iden":"sample input 1","content":"3200\npink"},{"iden":"sample output 1","content":"pink\n\n$a = 3200$ is not less than $3200$, so we print $s =$ `pink`."},{"iden":"sample input 2","content":"3199\npink"},{"iden":"sample output 2","content":"red\n\n$a = 3199$ is less than $3200$, so we print `red`."},{"iden":"sample input 3","content":"4049\nred"},{"iden":"sample output 3","content":"red\n\n$a = 4049$ is not less than $3200$, so we print $s =$ `red`."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}