Webeduclick.com
Computer Science Tutorials
Algorithm fnGCD(x,y) { if(x>=y && x%y==0) return y; else return (fnGCD(y, x%y)); } // End of Algorithm