#include <iostream>
#include <string>
using namespace std;
int main () {
string txt = "Hello World!";
cout << txt.at(0);
return 0;
}