Which of the following numbers is NOT printed by the loop? j = 10 while j > 0: j -= 1 if j == 5: continue print(j)