#include<stdio.h>

int main()
{
	printf("Hello!\n");
	int ch = getchar();
	printf("%c", ch);

	return 0;
}