def f(j,t,b):
if t < 0:
return "no answer"
elif j*2+t*4 == b:
return str(j)+" "+str(t)
else:
return f(j+1,t-1,b)
print(f(0,10,36))
运行该程序段,输出的结果是( )