#include using namespace std; #define REP(i,n) for(int i=0;i ostream& operator<<(ostream& os,const vector& vec){ os << "["; for(const auto& v : vec){ os << v << ","; } os << "]"; return os; } typedef long long ll; typedef unsigned long long ull; typedef pair pii; typedef vector vi; typedef vector vvi; ll N,D; ll gcd(ll a,ll b){ if(a>N>>D; if(N==D){ cout << 0 << endl; return 0; } ll m=gcd(N,D); cout << N / m - 1 << endl; }