Princessminne8512go Princessminne8512go Computers and Technology Answered What is the last thing printed by the following program? start = 30 stop = 10 for i in range(start, stop - 1, -5): if i == 0: print(i * 2) else: print(i)