import sequtils,strutils var a,b : int for l in stdin.lines: if l == "RED": a += 1 else: b += 1 if a > b: echo "RED" else: echo "BLUE"