from math import sin k = int(input()) ans = 0 for n in range(1, 50): ans += sin(k * n) / (n ** n) print(ans)