import math

N = int(input())
E = math.comb(N, 5) / math.comb(99, 5) * 12
print("{:.12f}".format(E))