
# series1.py
i = 2
while i<=10:
    print( i )
    i = i + 2
