t=input().split() a=int(t[0]) b=int(t[1]) c=int(t[2]) r=10**9+7 x=(a+b)/2 f=pow(int(x),c,r) print(int(f))