BC22 牛牛学除法

思路:

step1:输入a和b;使用地板除并打印结果;

代码如下:

a,b = list(map(int,input().split()))
print(a//b)