import java.util.*; class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int Ha = in.nextInt(); int Hb = in.nextInt(); int Hc = in.nextInt(); List h = new ArrayList(); h.add(Ha); h.add(Hb); h.add(Hc); Collections.sort(h, Comparator.reverseOrder()); for (int i = 0; i < 3; i++) { if (h.get(i) == Ha) { System.out.println("A"); } else if (h.get(i) == Hb) { System.out.println("B"); } else if (h.get(i) == Hc) { System.out.println("C"); } } } }