题面
数组内存放了一些个位数字,组成一个大数(从高位到低位),现在将这个数加 11,并输出加一以后的结果。
例如:
A = [2,3,1,1,4]A=[2,3,1,1,4]
则结果为 [2,3,1,1,5][2,3,1,1,5]。
A = [7,8,9]A=[7,8,9]
则结果为 [7,9,0][7,9,0]。
n = eval(input())
temp1 = input()
temp1 = temp1.strip().split(" ")
x = ""
for i in range(n):
x += temp1[i]
temp2 = str(int(x)+1)
for i in temp2:
print(i,end=" ")