Write a program that reads a number and prints all of its binary digits. Print the remainder number % 2, then
replace the number with number / 2. Keep going until the number is 0. For example, if the user provides the
Run #1:
Please enter a number: 13
1011
Run #2
Please enter a number: 231
11100111
P