diff --git a/tetration.py b/tetration.py new file mode 100644 index 0000000..8dc8934 --- /dev/null +++ b/tetration.py @@ -0,0 +1,2 @@ +n = float(input()) +print(n ** (1 / n))