What is the output of the following code?```pythonfor i in range(10): if i % 2 == 0: continue if i > 6: break print(i)```