for i in range(10):
if i == 5:
break
else:
print(i)
else:
print("Here")

What will be the output of the following program?

Posted on by