运行下列
运行下列程序,输出的结果是?( )
def fun(a, b):
s = 0
a = a[::-1]
for i in range(len(a)):
s += int(a[i])*b**i
return s
print(fun('45', 16))
69
45
64
61