#include typedef long long ll; typedef unsigned long long ull; using namespace std; #define pb push_back int dy[]={0, 0, 1, -1, 1, 1, -1, -1}; int dx[]={1, -1, 0, 0, 1, -1, -1, 1}; #define FOR(i,a,b) for (int i=(a);i<(b);i++) #define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--) #define REP(i,n) for (int i=0;i<(n);i++) #define RREP(i,n) for (int i=(n)-1;i>=0;i--) #define mp make_pair #define fi first #define sc second #define M 1000000007 ll n,ans; typedef ll MOD_POW_TYPE; MOD_POW_TYPE mod_pow(MOD_POW_TYPE x, MOD_POW_TYPE n, MOD_POW_TYPE mod) { MOD_POW_TYPE res = 1; while (n > 0) { if (n & 1) res = res * x % mod; // 最下位ビットが立っているときにx^(2^i)を掛ける x = x * x % mod; // xを順次二乗していく n >>= 1; } return res; } int main(){ cin >> n; ll c = n,ans = 0; for(ll x = 1;x <= n;x++){ ans += c * mod_pow(x,n - x,M) % M; ans %= M; c = (c * (n - x)) % M; c = (c * mod_pow(x + 1,M - 2,M)) % M; } cout << ans << endl; return 0; }