Write the while loop to print the following series:
100, 98, 96, ...2
i = 100 while i >= 2: print(i, end=", ") i -= 2