MOD = 10**9+7 N = int(input()) ans = N*(N + 1) ans *= pow(3, -1, MOD) ans %= MOD print(ans)