import java.util.*; import java.io.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); PrintWriter ou = new PrintWriter(System.out); long a = Long.parseLong(sc.next()); long b = Long.parseLong(sc.next()); long n = Long.parseLong(sc.next()); if(n == 0) ou.println(2); else{ long x = 1; long y = 0; long z = 0; long w = 1; long p = 2 * a; p %= (long)(Math.pow(10 , 9) + 7); long q = b - (a * (long)a) % ((int)Math.pow(10 , 9) + 7); q %= Math.pow(10 , 9) + 7; while(q < 0) q += (int)Math.pow(10 , 9) + 7; long r = 1; long s = 0; n--; while(n != 0){ if((n & 1) == 1){ long xx = (x * p) % ((int)Math.pow(10 , 9) + 7) + (y * r) % ((int)Math.pow(10 , 9) + 7); xx %= Math.pow(10 , 9) + 7; long yy = (x * q) % ((int)Math.pow(10 , 9) + 7) + (y * s) % ((int)Math.pow(10 , 9) + 7); yy %= Math.pow(10 , 9) + 7; long zz = (z * p) % ((int)Math.pow(10 , 9) + 7) + (w * r) % ((int)Math.pow(10 , 9) + 7); zz %= Math.pow(10 , 9) + 7; long ww = (z * q) % ((int)Math.pow(10 , 9) + 7) + (w * s) % ((int)Math.pow(10 , 9) + 7); ww %= Math.pow(10 , 9) + 7; x = xx; y = yy; z = zz; w = ww; } long pp = (p * p) % ((int)Math.pow(10 , 9) + 7) + (q * r) % ((int)Math.pow(10 , 9) + 7); pp %= Math.pow(10 , 9) + 7; long qq = (p * q) % ((int)Math.pow(10 , 9) + 7) + (q * s) % ((int)Math.pow(10 , 9) + 7); qq %= Math.pow(10 , 9) + 7; long rr = (p * r) % ((int)Math.pow(10 , 9) + 7) + (r * s) % ((int)Math.pow(10 , 9) + 7); rr %= Math.pow(10 , 9) + 7; long ss = (r * q) % ((int)Math.pow(10 , 9) + 7) + (s * s) % ((int)Math.pow(10 , 9) + 7); ss %= Math.pow(10 , 9) + 7; p = pp; q = qq; r = rr; s = ss; n >>= 1; } x = (2 * (a * x) % ((int)Math.pow(10 , 9) + 7)) % ((int)Math.pow(10 , 9) + 7) + (2 * y) % ((int)Math.pow(10 , 9) + 7); x %= Math.pow(10 , 9) + 7; while(x < 0) x += Math.pow(10 , 9) + 7; ou.println(x); } ou.flush(); sc.close(); } }