K = int(input()) dp = [0 for _ in range(201)] for a in [2, 3, 5, 7, 11, 13]: for b in [4, 6, 8, 9, 10, 12]: dp[a*b] += 1/36 print(dp[K])