有如下Python程序段,执行该程序段后,输出的结果是?( )
def fun(x,y):
if x >y:
rst = 2 ** x
else:
rst = x ** 2
return rst
x,y = 3,5
print(fun(x,y))
6
10
9
25