#!/usr/bin/env python3; # Begin Main print("Even numbers up to 100...") for i in range(2, 100 + 2, 2) : print(str(i))