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