k = int(input()) a = [2,3,5,7,11,13] b = [4,6,8,9,10,12] c = [i*j for i in a for j in b] print(c.count(k)/36)