def gcdPrint(a, b): print 'The gcd of', a, 'and', b, 'is', print gcd(a,b) def gcd(a, b): a2, b2 = a, b, while b>1: a, b = b, a%b return a gcdPrint(198, 342)