# finding the nth root of x x = int(input("What number? ")) n = int(input("What root? ")) print(x ** (1 / n))