View Code of Problem 59

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int m,n;
    cin>>m>>n;
    cout<<(m*n)/(__gcd(m,n))<<" "<<__gcd(m,n);
}

Double click to view unformatted code.


Back to problem 59