#!/bin/python3 import sys, math n = int(input().strip()) m = list(map(int, input().strip().split(' '))) print(n+math.factorial(n-2)%(10^9+7))