# 这是示例代码 # 注释的长度受限, /笑 # output(output(1 + 2 * 3 / 4)) # 首先输出`1+2*3/4`为2.5, 之后再输出`2.5`作为输出的长度为3 f(0) = 0 f(x) = x + f(x - 1) f(x, y) = x + y output(f(10)) output(f(1, 2))