Write a python program to compute the GCD of two numbers.

SIMULATION

Enter First Number

Enter Second Number

CODE

   1.  def computeGCD(x, y): 

   2.      while(y): 

   3.          x, y = y, x % y

   4.      return x 

   5.  a = int(input())

   6.  b = int(input())

   7.  print("Greatest Common Divisor : ",end="") 

   8.  print (computeGCD(a,b))