Source Code
import math

x,y = input().split()

print(math.floor(int(x)/int(y)))
Copy
The Tortoise and the Hare misterRoshi22
Python 3
14 ms
3.5 MB
Accepted