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 = int(input("Your choice: "))
	print()
	if choice == 0:
		print("Good luck!")
	elif choice == 1:
		print(skills.keys())
	elif choice == 2:
		print("You have", points ,"points.")
		skills.items()
input("The end")