1 2 3 4 5 6 7
n=int(input()) if n%4==0 and n%100 !=0: print("Високосный") elif n % 400 = 0: print("Високосный") else: print("Обычный")