#include <iostream> using namespace std; int main() { char ch = 'a' + 3; cout << ch << " " << (int)'B' << endl; return 0; }
d 65
c 66
d 66
100 66