#include <stdlib.h>
#include <stdio.h>
int main(void)
{
char INPUT_1[20]="",INPUT_2[20]="",INPUT_3[20];
scanf("%s",INPUT_1);
scanf("%s",INPUT_2);
scanf("%s",INPUT_3);
printf("hello, %s\n",INPUT_1);
printf("hello, %s\n",INPUT_2);
printf("hello, %s\n",INPUT_3);
return(0);
}