MOD = 10**9+7 N,M = map(int,input().split()) ans = (pow(2,MOD-2,MOD)*(pow(2,M,MOD)-1))%MOD print(ans)