#include<stdio.h>

int main(){

int a,b,p,temp;

scanf("%d%d",&a,&b);

p=a*b;

if(a>b){

temp=a;

a=b;

b=a;

}

while(b%a>0){

temp=b%a;

b=a;

a=temp;

}

printf("%d %d\n",a,p/a);

return 0;

}


 

0.0分

1 人评分

  评论区

  • «
  • »