package aoc import "strconv" func ParseInt(s string) int { if i, err := strconv.Atoi(s); err != nil { panic(err) } else { return i } }