#include <stdio.h>
#include <string.h>
int main() {
char name[50];
scanf("Test: %s", name);
printf("Hello, %s", name);
return 0;
}