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