#include<stdio.h>

int main(void)

{

char *a="hello";

char *b="hello";

if(a==b)

printf("YES\n");

else

printf("NO\n");

return 0;

}