CF519B.A and B and Compilation Errors

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A and B are preparing themselves for programming contests.

B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code.

Initially, the compiler displayed nn compilation errors, each of them is represented as a positive integer. After some effort, B managed to fix some mistake and then another one mistake.

However, despite the fact that B is sure that he corrected the two errors, he can not understand exactly what compilation errors disappeared — the compiler of the language which B uses shows errors in the new order every time! B is sure that unlike many other programming languages, compilation errors for his programming language do not depend on each other, that is, if you correct one error, the set of other error does not change.

Can you help B find out exactly what two errors he corrected?

输入格式

The first line of the input contains integer nn ( 3<=n<=1053<=n<=10^{5} ) — the initial number of compilation errors.

The second line contains nn space-separated integers a1,a2,...,ana_{1},a_{2},...,a_{n} ( 1<=ai<=1091<=a_{i}<=10^{9} ) — the errors the compiler displayed for the first time.

The third line contains n1n-1 space-separated integers b1,b2,...,bn1b_{1},b_{2},...,b_{n-1} — the errors displayed at the second compilation. It is guaranteed that the sequence in the third line contains all numbers of the second string except for exactly one.

The fourth line contains n2n-2 space-separated integers с1,с2,...,сn2с_{1},с_{2},...,с_{n-2} — the errors displayed at the third compilation. It is guaranteed that the sequence in the fourth line contains all numbers of the third line except for exactly one.

输出格式

Print two numbers on a single line: the numbers of the compilation errors that disappeared after B made the first and the second correction, respectively.

输入输出样例

  • 输入#1

    5
    1 5 8 123 7
    123 7 5 1
    5 1 7
    

    输出#1

    8
    123
    
  • 输入#2

    6
    1 4 3 3 5 7
    3 7 5 4 3
    4 3 7 5
    

    输出#2

    1
    3
    

说明/提示

In the first test sample B first corrects the error number 8, then the error number 123.

In the second test sample B first corrects the error number 1, then the error number 3. Note that if there are multiple errors with the same number, B can correct only one of them in one step.

首页