填空题

阅读下面代码,正确的输出是_

def f(n):
    if n <= 2:
        return n
    return f(n -1)*2 -f(n -2)+n
print(f(6)
赣ICP备20007335号-2