运行下列程序,输出的结果是?( )
def f(n): if n==1 or n==2: return 1 elif n>2: return f(n-1)+f(n-2) else: return -1 print(f(4))
54
24
4
16