import sys def power(x,y,p): res=1 x=x%p while(y>0): if y&1: res=(res*x)%p y=y>>1 x=(x*x)%p return res N=input().strip().split(' ') X=int((int(N[0])+int(N[1]))/2) P=10**9+7 Y=int(N[2]) print(power(X,Y,P))