#define the price of a frisbee
COST_OF_FRISBEE = 15
#get the number of frisbees the customer wants
frisnum = int(input("How many frisbees do you want: "))
#output cost
print(frisnum, "frisbees will cost", frisnum*COST_OF_FRISBEE)
5.8m questions
7.5m answers