mod = 1000000007 n=int(input()) ans = 10**(n) for i in range(n): ans += 3*10**i ans %= mod print(ans)