#include using namespace std; #define _p(...) (void)printf(__VA_ARGS__) #define forr(x,arr) for(auto&& x:arr) #define _overload3(_1,_2,_3,name,...) name #define _rep2(i,n) _rep3(i,0,n) #define _rep3(i,a,b) for(int i=int(a);i=int(a);i--) #define rrep(...) _overload3(__VA_ARGS__,_rrep3,_rrep2,)(__VA_ARGS__) #define ALL(x) (x).begin(), (x).end() #define BIT(n) (1LL<<(n)) #define SZ(x) ((int)(x).size()) #define fst first #define snd second typedef long long ll; typedef vector vi;typedef vector vvi;typedef pair pii;typedef vector vpii; template T lcm(T a, T b) { return a/__gcd(a,b)*b; } void Main() { ll N, D; scanf("%lld%lld", &N, &D); ll l = lcm(N, D); ll ans = l / D - 1; _p("%lld\n", ans); } int main() { cin.tie(0); ios::sync_with_stdio(false); Main(); return 0; }