#include <iostream> using namespace std; int main() { char ch = 'A'; ch += 32; cout << ch << " " << (int)ch << endl; return 0; }
A 65
a 97
A 97
a 65