#include using namespace std; typedef long long ll; int mpow(ll a,ll b,int m) { int ans=1; while (b) { if (b&1) ans=ans*a%m; a=a*a%m; b>>=1; } return ans; } int main() { int m=1e9+7; ll n; cin>>n; cout<<(4LL*mpow(10,n,m)-1)%m*mpow(3,m-2,m)%m<