#include using namespace std; int main() { int a[] = {1,2,3}; set s(a,a+3); set::iterator iter; if((iter = s.find(2)) != s.end()) { cout<<*iter<