C++简洁代码:

#include<bits/stdc++.h>

using namespace std;

int main() {
    int n;
    while(cin >> n) {
        set<int> set;
        int a;
        for(int i = 0; i < n; i ++) {
           cin >> a; set.insert(a);
        }
        for(auto it : set) cout << it << endl;
    }
    return 0;
}