Respuesta :

Answer:

Explanation:

x=int(input("Enter a number: "))

print (math.sqrt(math.fabs(x)))

Hope this may helpful

If incorrect comment me

Answer:

import math

a=int(input("Enter a number: "))

y=(math.fabs(a))

print(math.sqrt(y))

Explanation:

Got it right.