xxxxxxxxxx
i = int(input())
j = 5 # fix the code (1)
while (j <= (i/j)):
if not(i%j):
print(" prime")
continue # fix the code (2)
j = j + 2 # fix the code (3)
if (j > i/j):
print ("prime")
xxxxxxxxxx
What type of loop does the following Python syntax represent?
for i in range(10):
print(i)