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