a = int(input()) i=2000 while i<=a: if i%100==0: if i%400==0: print(i) else: print(i) i+=4