# Nを素因数分解して、約数の個数を最大化するには、より多くの素因数を使うのがいい、それで余れば2周目? # N400のとき、5を1個よりも2を2個選んだ方がいいということはあるか? それでは約数の個数を最大化できない # Nが小さいのでNまでの数を全探索するのがいい from collections import defaultdict # 辞書型に改造 def factorization(n): arr = defaultdict(int) temp = n for i in range(2, int(-(-n**0.5//1))+1): if temp%i==0: cnt=0 while temp%i==0: cnt+=1 temp //= i arr[i] = cnt if temp!=1: arr[temp] = 1 if arr==[]: arr[n] = 1 return arr N, K = map(int, input().split()) N_factors = factorization(N) #print(N_factors) ans = 1 mx = 0 for n in range(1, N): n_factors = factorization(n) common = 0 for p in n_factors: calc = min(n_factors[p], N_factors[p]) common += calc if common >= K: count = 1 for p in n_factors: count *= (n_factors[p]+1) if count > mx: mx = count ans = n print(ans)