Respuesta :

TJC07

Answer: Here you go, change it however you like :)

Explanation:

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

print(f"\nSquare root: {x**(1./2.)}")

print(f"\nCube root: {x**(1./3.)}")