document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. int up,down,step=0,highest=0;
  9. while(cin>>up>>down)
  10. {
  11. do
  12. {
  13. step+=up;
  14. if(step>highest)
  15. {
  16. highest=step;
  17. }
  18. step%=down;
  19. }while(step!=0);
  20. cout<<highest<<endl;
  21. }
  22. //system("pause");
  23. return 0;
  24. }
');