B,C,D=map(int,input().split()) mod=10**9+7 if C==1: ANS=B*D else: ANS=B*(pow(C,D+1,mod)-1)*pow(C-1,mod-2,mod)-B print(ANS%mod)