K = int(input()) A = [2, 3, 5, 7, 11, 13] B = [4, 6, 8, 9, 10, 12] C = [a*b for a in A for b in B] print(C.count(K) / 36)