#P262. 【例43.3】 转二进制

【例43.3】 转二进制

Description

Convert an integer nn to binary and output it from least significant bit to most significant bit.

Input Format

A single line containing a positive integer nn (1n1091≤n≤10^9).

Output Format

Output a binary number from least significant bit to most significant bit, representing the binary form of nn. No spaces between digits.

Sample

11
1101