← Home
For problem statement at 0-999/600-699/630-639/630/problemH.txt this is a correct solution, but verifier at 0-999/600-699/630-639/630/verifierH.go ends with All tests passed can you fix the verifier?  ```go
package main

import (
	"fmt"
)

func main() {
	var n int
	fmt.Scan(&n)
	
	n64 := int64(n)
	combinations := n64 * (n64 - 1) * (n64 - 2) * (n64 - 3) * (n64 - 4) / 120
	result := combinations * combinations * 120
	
	fmt.Println(result)
}
```