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