1. Decimal to Binary
Print the binary representation of a number without using the division and modulo operators.
Sample Input:
1 2 3 4 10 11 20 30 32
Sample Output:
1 10 11 100 1010 1011 10100 11110 100000
Print the binary representation of a number without using the division and modulo operators.
1 2 3 4 10 11 20 30 32
1 10 11 100 1010 1011 10100 11110 100000