What is the output for the following portion of a program? Assume the user enters 162.5.
strWeight = input("Enter your weight in pounds: ")
weight = float(strWeight)
print (weight)
162.5
O 162
O 163
O An error occurs.