Find the hypotenuse of a right angle triangle of sides a nd b

 Find the hypotenuse  of a right angle triangle of sides a nd b


   import math

    a=int(input())

    b=int(input())

    print(int(math.sqrt((a**2)+(b**2))))


Comments