What is the output of this code?x = 5while x > 0: x -= 1 if x == 2: breakelse: print('loop ended')print('after')