2.cpp 186 B

1234567891011
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main(){
  4. int e,f;
  5. long long int d=1;
  6. cin>>e>>f;
  7. while((e*d)%f!=1){d++;}
  8. cout<<d;
  9. system("pause");
  10. return 0;
  11. }