package de.codegym.task.task04.task0424; /* Drei Zahlen */ import java.io.*; public class Solution { public static void main(String[] args) throws Exception { BufferedReader eingabe = new BufferedReader(new InputStreamReader(System.in)); int a = Integer.parseInt(eingabe.readLine()); int b = Integer.parseInt(eingabe.readLine()); int c = Integer.parseInt(eingabe.readLine()); if (a==b && a != c){ System.out.println(c); } else if (a==c&& a != b){ System.out.println("b"); } else if (b==c&& b!=a){ System.out.println(a); } } }