下列Python程序,运行的结果是?( )
def qh(a,b,c=5): return a+b+c print(qh(5,10),qh(10,10,10))
15 25
20 25
20 30
15 30