#include <iostream>
using namespace std;
int main()
{
cout << "'0' = " << (int)'0' << endl;
cout << 0 << endl;
cout << (int)'\0' << endl;
return 0;
}