简介

简单

code

#include <iostream>
#include <algorithm>
#include <set>
using namespace std;

int main() {
    int n;
    int t;
    while(cin >> n){
        set<int> s;
        while(n--){
            cin >> t;
            s.insert(t);
        }
        for(auto it : s){
            cout << it << endl;
        }
    }
    return 0;
}
posted on 2021-06-22 16:11  HDU李少帅  阅读(43)  评论(0编辑  收藏  举报