package simplemath import "math" func Add(a int, b int) int { return a + b } func Sqrt(num float64) float64 { return math.Sqrt(num) }