# https://open.kattis.com/problems/tetration
# 1s
# 1.6 Easy

# 22 chars: Top 10 place 5
n=gets.to_f;p n**(1/n)
