#for loop
a=b=c=0
for m in range(0,10):
a=int(input('the number1:'))
b=int(input('the number2:'))
if b==0:
print('intermediate')
break
else:
c=a//b
print('the answer=',c)
print('conclusion')
-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+