#!/usr/bin/python3
#Askisi 6

def disekto(x):
	if (x%4 == 0 and x%100 != 0) or (x%400 == 0):
		print(f"Το έτος {x} είναι δίσεκτο")
	else:
		print(f"Το έτος {x} δεν είναι δίσεκτο")

def main():
	x=None
	try:
		x=int(input("Give a year: "))
	except Exception as e:
		print(f"Exception: {e}")
		exit(1)
	disekto(x)

if __name__=="__main__":
	main()
