N = int(input())

res = 1.0

for i in range(5):
    res *= (N-i)/(99-i)

print(res*12)