思路 用PYTHON 或 JAVA 干掉
AC代码
a, b, n = map(int, input().split()) for i in range (2, n, 1) : temp = b b = b ** 2 + a a = temp print(b)