#include #include using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i; using vvi = vector>; template inline void vin(vector& v) { rep(i, v.size()) cin >> v.at(i); } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template inline void drop(T x) { cout << x << endl; exit(0); } template void vout(vector v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; using mint = modint1000000007; using vm = vector; using vvm = vector; int main() { lint N; cin >> N; if (N <= 3) drop(0); mint a=0, b=0, c=0, x, y, z; vvm dp(N-3, vm(16)), dp1(N-3, vm(16)); rep(i, 16) dp[0][i] = 1; dp1[0][10] = 1; rep(i, N-4) { rep(j, 16) { if (j == 10) continue; dp[i+1][(j*2)%16] += dp[i][j]; dp[i+1][(j*2+1)%16] += dp[i][j]; } dp1[i+1][10] += dp[i+1][10]; rep(j, 16) { dp1[i+1][(j*2)%16] += dp1[i][j]; dp1[i+1][(j*2+1)%16] += dp1[i][j]; } } rep(i, 16) a += dp1[N-4][i]; std::cout << a.val() << '\n'; }