#include <stdio.h>
int main()
{
int n,i=0;
scanf("%d",&n);
for(;i<n;i++)
    printf("Happy new year!Good luck!\n");
return 0;
}