Read the following code used to calculate the total cost of cookies sold:
boxes = input("How many boxes of cookies did you sell?")
cost = 4
totalCost = boxes * cost
There is an error in the code. Which additional function needs to be used with the input() function?
A. float()
B. add()
C. int()
D. str()