#include #include using namespace std; int main(){ map m; int i; for(i=0; i<26; i++) { m.insert(pair('A'+i, 65+i)); } return 0;}