skills = {"Power": 0,"Magic": 0, "Speed": 0}
points = 30
choice = 100
while choice != "0":
	print(
	"""
	0 - Exit
	1 - Show skills
	2 - Use some points
	3 - Take some points
	"""
	)
	choice = input("Your choice: ")
	print()
	if choice == 0:
		print("Good luck!")
	elif choice == 1:
		print(skills.keys())
input("The end")