#include <iostream>
using namespace std;

int main() {
	char c = 'c';
	int a = c;
	cout << a;
	return 0;
}