#ABC133C. Remainder Minimization 2019
Remainder Minimization 2019
题目描述
You are given two non-negative integers and . We will choose two integers and such that . Find the minimum possible value of .
给你两个非负整数 和 。我们将选择两个整数 和 ,使得 .求 的最小可能值。
输入格式
输入内容按以下格式标准输入:
输出格式
打印在给定条件下选择 和 时 的最小可能值。
样例 #1
样例输入 #1
2020 2040
样例输出 #1
2
样例 #2
样例输入 #2
4 5
样例输出 #2
20
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
当 , .
样例 解释
我们只有一个选择: 。