#include <stdio.h>
int main()
{
	int n;
	scanf("%d", &n);
	int i;
	for(i=1; i<=n; ++i)
	{
		if(i!=1)
			printf(" that ");
		if(i%2!=0)
			printf("I hate");
		else
			printf("I love");
	}
	printf(" it\n");
	return 0;
}

  

 posted on 2019-11-06 10:51  ComMario  阅读(93)  评论(0)    收藏  举报