#include using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; double ret = 12.0; for (int i = 0; i < 5; i++) ret *= (double)(n-i) / (99-i); cout << fixed << setprecision(12) << ret << endl; return 0; }