Problem1171--又是签到

1171: 又是签到

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description

又开始签到了,每天早上签到的人有n人之多(1<=n<=1000,000),每个人的学号是1到2*10^9之间的一个整数,现在来了n个人,想知道谁没有来。

Input

输入多组案例
第一行是n
接下来n行,是n个人的学号
最后n-1行是来了的人的学号

Output

输出没有来的人的学号

Sample Input Copy

3
10061061
10061023
10061201
10061061
10061023

Sample Output Copy

10061201

Source/Category