Exercise: Floor Division Operator

Here we divide a by b. Change the operator such that the result is rounded down to the next whole number.
a = 10 b = 3
result = a / b
print(result)
Python
Setting up Python environment...
Output