#include int main() { double N; std::cin >> N; printf("%.10lf\n", (N/99 * (N-1)/98 * (N-2)/97 * (N-3)/96 * (N-4)/95) * 12); return 0; }