#include using namespace std; int main () { char ch; ch = 'A'; while (ch <= 'z'){ cout << ch << " " << int(ch) << endl; ch ++; } }