Run ID:126887

提交时间:2025-07-22 13:48:24

#include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int b[101] = {0}; for (int i = 1; i < 101; i++) { int x ; cin >> x; b[x]++; } for (int i = 1; i <= 101; i++) { if (b[i]%2!=0) { cout<<i; } } return 0; }