#include <stdio.h>

int main()
{
    int n = 0;
    scanf("%d",&n);
    while(n--)
        printf("Happy new year!Good luck!\n");
    return 0;
}