#include
#include
#include
int main()
{
\x05int x,y,t,max,min,i,n1,n2;
\x05printf("Please enter two numbers:");
\x05scanf("%d,%d",&x,&y);
\x05if(x > y)
\x05{t = x; x = y; y = t;}
\x05n1=x; n2=y;
\x05t = n2 % n1;
\x05//
\x05max = (n1);
\x05min = x * y / max ;
\x05printf("max is :%d\n",max);
\x05printf("min is :%d\n",min);
}