#MoveDate popcornCost = 5 ticketPrice = 10.75 numPeopleStr = raw_input("Enter the number of people going to the movie:") numPeople = int( numPeopleStr ) totalCost = (popcornCost+ticketPrice) * numPeople print "The total cost will be:", totalCost