while
반복문 + if
조건문 + 증감식 변수 + break
로 무한반복 탈출로 구현한다.# boj, 11653 : 소인수분해, python3
import sys
N = int(sys.stdin.readline())
num = 2
while True:
if N % num is 0:
print(num)
N //= num
elif N is 1:
break
else:
num += 1