运行下列程序,输出的结果是?
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(-2))
-2
-1
出错
1