#include <stdlib.h>
#include <stdio.h>

int main(int argc, char **argv) {
  char s[20];
  gets(s);
  printf("Hello %s!\n", s);
  return 0;
}
