201# Python runtime errors: try it
2
3print("Welcome to Cake Slice Calculator")
4print("================================")
5print()
6print("This program helps you cut a cake into perfectly equal slices")
7
8# ask how many people you need to share a cake with
9people = int(input("How many people want a slice of cake?"))
10
11# work out the angle of each slice
12angle = 360 / people
13
14# display the result
15print("You need to cut " + str(people) + " slices, each measuring exactly " + str(angle) + " degrees")
16
17# Challenges
18# 1) See what happens when you type in 10 people or 5 people
19# 2) See what happens when you type in 0
20# 3) See what happens when you type in "five"