using System; namespace yukicoder { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); string[] t = { "1", "2", "3", "4", "5", "6", "7", "8", "9","10" }; bool f = false; for(int i = 0; i < t.Length; i++) { if (i == 9) { Console.WriteLine(t[i]); break; } if (str[i]!=t[i]) { f = true; Console.WriteLine(t[i]); break; } } } } }