#include #include using namespace std; int main() { int n; cin >> n; set s; for(int i = 0; i < n; i++) { int x; cin >> x; s.insert(x); } int broj; cin >> broj; set::iterator it = s.find(broj); if(it != s.end()) { cout << "Postoi\n"; } else { cout << "Ne postoi\n"; } return 0; }