This problem tests your understanding of Python's two division operators. You'll receive two integers and need to print both the integer division result and the float division result. Integer division (//) discards the decimal part.
Regular division (/) keeps it. The problem wants you to demonstrate you know the difference. Go read the problem statement. Notice which output comes first. Then return for the walkthrough.