还是考察输入问题,格式化输入,感觉到了现在对于牛客这边的输入算是真的了解了!

i = input()
a = int(i.split(" ")[0])
b = int(i.split(" ")[1])


print(int(a/b))