Write the while loop to print the following series:
5, 10, 15, ...100
i = 5 while i <= 100: print(i, end=", ") i += 5