Here's the complete solution: python a = int(input()) b = int(input()) print(a // b) print(a / b) The // operator performs floor division, returning just the integer part. The / operator performs true division, returning a float.
This problem reinforces that Python 3 has two distinct division operators. In Python 2, / behaved like // for integers, which caused many bugs. Python 3 fixed this by making / always return a float.