300998: CF188F. Binary Notation

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

F. Binary Notationtime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output

You are given a positive integer n. Output its binary notation.

Input

The only line of input data contains an integer n (1 ≤ n ≤ 106).

Output

Output the binary notation of n (without any leading zeros).

ExamplesInput
5
Output
101
Input
101
Output
1100101
Note

In the first example 5 = 1 * 22 + 0 * 21 + 1 * 20.

Input

加入题单

算法标签: