코딩테스트/프로그래머스
def solution(n): answer = 0 for i in range(2,n): if n % i == 1: answer = i break return answer