/* -*- coding: utf-8 -*- * * 1800.cc: No.1800 Random XOR - yukicoder */ #include #include using namespace std; /* constant */ const int MOD = 1000000007; /* typedef */ typedef long long ll; template struct MI { int v; MI(): v() {} MI(int _v): v(_v % MOD) {} MI(long long _v): v(_v % MOD) {} MI operator+(const MI m) const { return MI(v + m.v); } MI operator-(const MI m) const { return MI(v + MOD - m.v); } MI operator*(const MI m) const { return MI((long long)v * m.v); } MI &operator+=(const MI m) { return (*this = *this + m); } MI &operator-=(const MI m) { return (*this = *this - m); } MI &operator*=(const MI m) { return (*this = *this * m); } MI pow(ll n) const { // a^n % MOD MI pm = 1, a = *this; while (n > 0) { if (n & 1) pm *= a; a *= a; n >>= 1; } return pm; } MI inv() const { return pow(MOD - 2); } MI operator/(const MI m) const { return *this * m.inv(); } MI &operator/=(const MI m) { return (*this = *this / m); } }; typedef MI mi; /* global variables */ /* subroutines */ /* main */ int main() { ll n, m; scanf("%lld%lld", &n, &m); mi a = (mi(2).pow(m) - 1) / 2; printf("%d\n", a.v); return 0; }