Problem
1. Write a program that prints all powers of 2 from 20 up to 220.
2. 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.