#289. seeColor

seeColor

Background

Description

Given a string, if the string begins with "red" or "blue" return that color string, otherwise return the empty string.

Format

Input

Output

Samples

redxx
"red"
xxred
""
blueTimes
"blue"

Limitation

1s, 1024KiB for each test case.