View Code of Problem 59

#include<stdio.h>
#include<string.h>
int gcd(int a,int b)
{
	if(b != 0)
	return gcd(b,a % b);
	else
	return a;
}

int main()
{
	int a,b;
	scanf("%d%d",&a,&b);
	printf("%d %d",a * b / gcd(a,b),gcd(a,b));
}

Double click to view unformatted code.


Back to problem 59