document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int a,b,ah,bh;
  8.     cin>>a;cin>>b;
  9.     ah = a; bh = b;
  10.     while(ah!=bh)
  11.     {
  12.         while (ah<bh)
  13.         ah+=a;
  14.         while (bh<ah)
  15.         bh+=b;
  16.     }
  17.     cout<<endl<<bh;
  18.     system("pause");
  19. }
');