// Description
Convert a non-negative decimal integer to its binary representation (without leading zeros).
// Input
A single integer n (0 <= n <= 10^9).
// Output
The binary representation of n.
// Hint
Repeatedly divide by two, or use the languages built-in conversion.