#include #include #include #include long int x= 1000000007; long int power(int tem,long int t1) {long int h; if(t1==0) {return 1;} h = power(tem,t1/2); if(t1%2==0){return( (h *h) % x) ; } else {return((tem*((h*h)%x))%x);} } int main() { int a,b,temp; long int t,result; scanf("%d""%d""%ld",&a,&b,&t); temp=(a+b)/2; result=power(temp,t); printf("%ld",result%x); return 0; }