#include "stdio。
h"
int MaxGY(int a,int b)/*求最大公约数*/
{
int r;
int temp;
if (a<b)
{
temp=a;
a=b;
b=temp;
}
r=a%b;
while(r!=0)
{
a=b;
b=r;
r=a%b;
}
return b;
}
int MaxGB(int a,int b)/*求最小公倍数*/
{
int c;
c=a*b;
return c/MaxGY(a,b);
}
main()
{
int a,b;
printf("qing shu ru liang ge shu,yong dou hao fen kai:\n");
scanf("%d,%d",&a,&b);
printf("zui da gong yue shu wei:%d\n",MaxGY(a,b));
printf("zui xiao gong bei shu wei:%d\n",MaxGB(a,b));
}。