3 lines
39 B
Python
3 lines
39 B
Python
n = float(input())
|
|
print(n ** (1 / n))
|
n = float(input())
|
|
print(n ** (1 / n))
|