#include <iostream>
#include <string>
#include <map>
int main ()
{
std::map<char, int> mp;
mp['a'] = 1;
mp['x'] = 7;
mp['r'] = 9;
std::map<char, int>::iterator it = mp.find('x');
if (it == mp.end())
std::cout << "Not Found";
else
std::cout << "Found";
return 0;
}
/*
run:
Found
*/