def comb(n, m) (n - m + 1..n).reduce(:*) / (1..m).reduce(:*) end puts comb(gets.to_i, 5).to_f / comb(99, 5) * 12