BC23 牛牛学取余

思路:

step1:输入a和b;使用%取余数;输出;

代码如下:

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