k=int(input()) dp=[0]*(k+1+6) for i in range(k-1,-1,-1): for j in range(1,7): dp[i]+=dp[i+j]*1/6 dp[i] += 1 print(dp[0])