#include <iostream>

int main()
{
    for(char i = 8; i <= 190; ++i)
    {
        std::cout << int(i) << " = '" << i << "'" << std::endl;
    }
}
