You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
239 B
C++

#include <cstdio>
int main()
{
int n;
scanf("%d", &n);
for (int i = 1; i <= n; i++)
{
printf(i & 1 ? "I hate" : "I love");
if (i != n) printf(" that ");
}
printf(" it");
return 0;
}