Consider the following function for computing the greatest c…
Consider the following function for computing the greatest common divisor of two integers greater than 0: def gcd(x: int, y: int) -> int: # Line 1 if x % y == 0: # Line 2 return y # Line 3 else : return gcd(y, x % y) # Line 4 Which line contains a recursive function call?