a=[2,3,5,7,11,13] b=[4,6,8,9,10,12] K =int(input()) ans =0 for i in a: for j in b: if K == i*j: ans += 1 print(ans/(6**2))