#include "stdio.h" void main (void){ int i; char str1[100]; char str2[100]="yukicoder"; scanf("%s",str1); if(*str1 == *str2){ printf("Hello World!\n"); } }