运行下列程序后, 输出的结果是? ( )
def fun(s):
if len(s) == 1:
return s
else:
return fun(s[1:]) + s[0]
print(fun('CIE2023'))
3202EIC
EIC3202
3220EIC
EIC2023