#define _USE_MATH_DEFINES #include using namespace std; signed main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; vector a(n), b(n); set ok; for (int i = 0; i < n; i++) { cin >> a[i] >> b[i]; ok.insert(b[i]); } for (int i = 0; i < n; i++) { if (ok.count(a[i])) ok.erase(a[i]); } for (int i = 0; i < n; i++) { if (ok.count(b[i])) { cout << b[i] << '\n'; ok.erase(b[i]); } } return 0; }