#!/usr/bin/env python3; # Begin Main print("Powers of 2 up to 256!") i = 1 while i <= 256 : print(str(i)) i *= 2