Implementation of Algorithm 1.9 
Determines whether a positive integer is a power of 2
Author: Ryan McIntyre

Input is given in the command line as a space-separated list of
positive integers.

Output is "True" / "False" with a corresponding printed message
for each input.

sample call:
	python power2.py 1 6 9 8 17
