#d067. 格瑞哥里的煩惱 (1 行版)i = int(input())if i%4==0 and i%100!=0 or i%400==0: print("a leap year")else: print("a normal year")