Time limit: 0.2s
Memory limit: 64MB
Input:
Output:
Task
You are given an integer . Print a number with digits in base such that it is only made of digits and and it is a multiple of .
As an example, if , is one such number.
Input data
The first line contains , the number of digits of the number we need to find.
Output data
The first line will contain an integer with digits, representing the required answer. Any correct solution is accepted, as long as the number respects the rules given above.
Constraints and clarifications
- ;
- For tests worth points, .
Example
stdin
8
stdout
10110000
Explanation