#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <string>
#include <map>
#include <math.h>
#include <cmath>
#include <climits>
#include <unordered_map>
#include <unordered_set>
#include <assert.h>
#include <fstream>
#include <bitset>
#include <iomanip>
typedef long long ll;
using namespace std;
int MOD = (int)1e9;
int MAXN = 1e6;
//classes
//global
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
//ifstream fin("input.txt");
//ofstream fout("output.txt");
//stop
int n;
cin >> n;
map<string,int> Map;
string s;
for(int i = 0; i < n; i++){
cin >> s;
Map[s]++;
}
map<string,int> finish;
for(int i = 0; i < n-1; i++){
cin >> s;
finish[s]++;
}
for(auto& i: Map){
if(i.second != finish[i.first]) cout << i.first << '\n';
}
return 0;
}