m=int(input())
n=int(input())
print((m // n))
Если правильно понял, то так
Объяснение:
m,n=map(int,input().split())
pie = m // n
cost_pie = pie * n
print(m - cost_pie)
m=int(input())
n=int(input())
print((m // n))
Если правильно понял, то так
Объяснение:
m,n=map(int,input().split())
pie = m // n
cost_pie = pie * n
print(m - cost_pie)