What is the output? print("Demonstrating 'break':") i = 1 while i < 10: if i == 5: break print(i) i += 1