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