3 importmath a,b=map(int,input().split(',')) print("GCD:{:}, LCM:{:}".format(math.gcd(a,b),int(a*b/math.gcd(a,b)))