What will be the output of the following code snippet?```pythonfor i in range(5): if i == 3: break print(i, end=' ')```