#!/usr/bin/python3
def einai_disekto(etos):
	if (etos % 4 == 0 and etos % 100 != 0) or (etos % 400== 0):
		return True
	else:
		return False
def main():
	etos=int(input("Δώσε ένα έτος:"))
	if einai_disekto(etos):
		print(f"Το έτος {etos} είναι δίσεκτο.")
	else:
		print(f"Το έτος {etos} δεν είναι δίσεκτο.")
if __name__=="__main__":
	main()
