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