High School

What is the output for the following portion of a program? Assume the user enters 162.5.

```python
strWeight = input("Enter your weight in pounds: ")
weight = float(strWeight)
print(weight)
```

A. 162.5
B. 162
C. 163
D. An error occurs