package bar

import "strconv"

func Answer() int {
	n, _ := strconv.Atoi("42")
	return n
}
