mjy 1 prog chahiye jis ki statement ye hai.......
" write a recursive function GCD that returns the greatest common divisor of x and y. the GCD of x and y is defined as follow ;
if y=0 then GCD of (x,y) is x; otherwise GCD of (x,y) is GCD(y, x%y)."