For problem statement at 0-999/700-799/740-749/742/problemA.txt this is a correct solution, but verifier at 0-999/700-799/740-749/742/verifierA.go ends with All 105 tests passed can you fix the verifier? package main
import "fmt"
func main() {
var n int64
fmt.Scan(&n)
if n == 0 {
fmt.Print(1)
return
}
switch n % 4 {
case 1:
fmt.Print(8)
case 2:
fmt.Print(4)
case 3:
fmt.Print(2)
default:
fmt.Print(6)
}
}