import java.util.*; import java.math.BigInteger; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); BigInteger n=sc.nextBigInteger(); BigInteger two=new BigInteger("2"); BigInteger x=n.divide(two); BigInteger y=n.subtract(x); BigInteger ans=x.multiply(y); ans=ans.add(y); ans=ans.add(x); BigInteger mod=new BigInteger("1000007"); ans=ans.remainder(mod); System.out.println(ans); }}