0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 07:05:24 +00:00
OI-codes/LibreOJ/7/7.cpp

13 lines
218 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
unsigned long long x, ans = 0;
for (int i = 0; i < 3000000; i++) {
cin >> x;
ans ^= x;
}
cout << ans << endl;
return 0;
}