N = gets.to_i MOD = 10 ** 9 + 7 puts (1..N).inject { |e, n| (e * n % MOD) * (2 * n - 1) % MOD }