#ABC112D. Partition
Partition
题目描述
You are given integers and .
Consider a sequence of length consisting of positive integers such that = . Find the maximum possible value of the greatest common divisor of .
给你整数 和 。
考虑长度为 的序列 由正整数组成,其中 = 。求最大公约数 的最大可能值。
输入格式
输入内容按以下格式标准输入:
输出格式
打印满足条件的序列 的最大公约数的最大可能值。
样例 #1
样例输入 #1
3 14
样例输出 #1
2
样例 #2
样例输入 #2
10 123
样例输出 #2
3
样例 #3
样例输入 #3
100000 1000000000
样例输出 #3
10000
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
考虑序列 。它们的最大公约数是 ,这是最大值。