#include <iostream> #include <vector> #include <unordered_map> using namespace std; int main() { int i=0; int len=0; int n=0; unordered_map<int,int>hash; vector <int> a; while(cin>>n) { if(hash.count(n)==0) { ...