import java.io.*; import java.util.*; public class Main { static final int MOD = 1000000007; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); long n = sc.nextLong() - 1; long[] ans = new long[3]; for (int i = 0; i < 3; i++) { ans[i] = sc.nextInt(); } long[][][] matrix = new long[63][3][3]; matrix[0][0][0] = 1; matrix[0][0][1] = MOD - 1; matrix[0][1][1] = 1; matrix[0][1][2] = MOD - 1; matrix[0][2][2] = 1; matrix[0][2][0] = MOD - 1; for (int i = 1; i < 63; i++) { for (int j = 0; j < 3; j++) { for (int k = 0; k < 3; k++) { for (int l = 0; l < 3; l++) { matrix[i][j][l] += matrix[i - 1][j][k] * matrix[i - 1][k][l] % MOD; matrix[i][j][l] %= MOD; } } } } for (int i = 62; i >= 0; i--) { if (n < (1L << i)) { continue; } long[] next = new long[3]; n -= (1L << i); for (int j = 0; j < 3; j++) { for (int k = 0; k < 3; k++) { next[j] += matrix[i][j][k] * ans[k] % MOD; next[j] %= MOD; } } ans = next; } System.out.println(ans[0] + " " + ans[1] + " " + ans[2]); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }