4 lines
267 B
Python
4 lines
267 B
Python
all_silces = int(input("how many slices of pizza your have: "))
|
|
eat_silces = int(input("how many slices of pizza have you eaten: "))
|
|
#print('There are %s slices left' % (str(all_silces - eat_silces)))
|
|
print('There are {0} slices left'.format(all_silces - eat_silces)) |