cnt = 0
for i in 0 .. 2
  s = gets.chomp
  if s == "RED"
    cnt += 1
  end
end
puts (cnt <= 1 ? "BLUE" : "RED")