package m.shin;
import java.util.Scanner;
public class Con516 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int r = 0,b = 0;
		for(int i = 0;i < 3;i++){
			if(s.nextLine().equals("RED")){
				r++;
			}else{
				b++;
			}
		}
		s.close();
		if(r > b){
			System.out.println("RED");
		}else{
			System.out.println("BLUE");
		}

	}

}