Data Structure C++

#include 
#include 
using namespace std;
int main()
{
  map mapObject;
  int i;
  for(i = 0; i < 26; i++)
    mapObject.insert(pair('A' + i, 65 + i));
  char ch;
  cout << "Enter key: ";
  cin >> ch;
  cout << "Its ASCII value is  " << mapObject[ ch ];
  return 0;
}