#include <iostream>
#include <string>
using namespace std;

int main() {
	string s = "hello";
	cout << (int)s[s.size()] << endl;
}