請不要直接抄寫程式碼! 也請不要直接跳到程式碼部分,除非你已經寫好了,想要參考別人的寫法!

#include <iostream>  
using namespace std;  

int gcd(int x, int y){  
    while(y!=0){  
        int tmp = x%y;  
        x = y;  
        y = tmp;  
    }  
    return x;  
};  


int main()  
{  
    int a,b;  
    while(cin>>a>>b){  
        int GCD = gcd(a,b);  
        cout<<GCD<<" "<<a*b/GCD<<endl;  
    }  
}

如果有任何問題,歡迎私訊跟我討論喔!