Pyhton MCQ
i = 1
while True:
if i%3 == 0:
break
print(i)
i + = 1
Wide-eyed Wombat
i = 1
while True:
if i%3 == 0:
break
print(i)
i + = 1