Josif_tepe

Untitled

Feb 12th, 2026
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8. int m;
  9. cin >> m;
  10. int n;
  11. cin >> n;
  12.  int nzs = 0;
  13.  
  14.  for(int i = m; i <= m*n; i++){
  15.     if(i%n==0 and i%m==0){
  16.         cout << i <<endl;
  17.     return 0;
  18.     }
  19.  }
  20.  
  21.  
  22.     return 0;
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment