#many tripets import numpy as np def matrix_power(A, N, mod): # returnA^N %mod in O(K**3 log N). (K is the size of A.) assert A.shape[0] == A.shape[1] K = A.shape[0] if N == 0: return np.eye(K, dtype=np.int64) else: if N % 2 == 0: mat = matrix_power(A, N//2, mod) return np.dot(mat, mat) % mod else: mat = matrix_power(A, N//2, mod) return np.dot(np.dot(mat, mat) % mod, A) % mod mod = 10 ** 9 + 7 N = int(input()) X = list(map(int, input().split())) A = np.array([[1, -1, 0], [0, 1, -1], [-1, 0, 1]]) res = np.dot(matrix_power(A, N-1, mod), np.array(X)) res %= mod print(*res)