运行下列程序后,输出的结果是?( )
def jsh(n): if n == 1: return 1 else: return n + jsh(n-1) print(jsh(10))
1
35
45
55