GCD of Two Numberss


AIM:
 To write a program to determine GCD of Two Numberss

ALGORITHM:
 1.Compare number 1(no1) with number 2(no2).If no1==no2,go to step 3.Else if no1<no2 ,then exchange no1 and no2.
 2.no1=no1-no2; go to step 1
 3.Display result as no1.