#include<iostream> #include <set> using namespace std; int main(){ int n; cin >> n; set<int> set; while(cin >> n) { set.insert(n); } for(...