package util import ( "strconv" ) func MustConv(s string) int { n, err := strconv.Atoi(s) if err != nil { panic(err) } return n }