import sys S = [line.rstrip() for line in sys.stdin if "BLUE" == line.rstrip()] if 2 <= len(S): print("BLUE") else: print("RED")