You are given an integer N. Let LCM(1,2,…,N) be the least common multiple of every integer from 1 to N, and let P(N) be the product of every prime that is at most N.
LCM(1,2,…,N) is always divisible by P(N). Print that quotient modulo 1000000007.
For example, with N=5 we have LCM(1,2,3,4,5)=60 and P(5)=2×3×5=30, so the quotient is 60/30=2.