运行以下程序,正确的打印结果是?( )
def sum1( arg1, arg2 ):
total = arg1 + arg2
return total
t= sum1( 10, 20 )
print(t)
10
20
30
40