josiftepe

Untitled

Oct 18th, 2020
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8. int a;
  9. int b;
  10. int x;
  11.  
  12. cin>>a;
  13. cin>>b;
  14. x=1;
  15.  
  16. while(a*b>x){
  17.     x+=1;
  18.     if ((x%b==0) and (x%a==0)){
  19.         cout<<x;
  20.         break;
  21.     }
  22.  
  23. }
  24.  
  25.  
  26.  
  27. return 0;
  28. }
  29.  
Advertisement
Add Comment
Please, Sign In to add comment