3796.Chilly Willy

Time Limit: 1s Memory Limit: 256MB

Chilly Willy loves playing with numbers. He only knows prime numbers that are digits yet. These numbers are 2, 3, 5 and 7. But Willy grew rather bored of such numbers, so he came up with a few games that were connected with them.

Chilly Willy wants to find the minimum number of length n, such that it is simultaneously divisible by all numbers Willy already knows (2, 3, 5 and 7). Help him with that.

A number's length is the number of digits in its decimal representation without leading zeros.

Input Format(From the terminal/stdin)

A single input line contains a single integer n (1 \le n \le 105).

Output Format(To the terminal/stdout)

Print a single integer - the answer to the problem without leading zeroes, or "-1" (without the quotes), if the number that meet the problem condition does not exist.

Sample Input 1

Copy
1
 \n

Sample Output 1

Copy
-1
  \n

Sample Input 2

Copy
5
 \n

Sample Output 2

Copy
10080
     \n

Submit

请先 登录

© 2025 FAQs