package main
import (
"fmt"
"math"
)
func main() {
i := 1
fmt.Println(math.
Abs
(float64(i)))
fmt.Println(math.
Ceil
(3.8))
fmt.Println(math.
Floor
(3.6))
fmt.Println(math.Mod(11,3))
fmt.Println(math.Modf(3.22))
fmt.Println(math.Pow(3,2))
fmt.Println(math.Pow10(3))
fmt.Println(math.Sqrt(9))
fmt.Println(math.Cbrt(8))
fmt.Println(math.Pi)
fmt.Println(math.
Round
(4.2))
fmt.Println(math.IsNaN(3.4))
fmt.Println(math.Trunc(1.999999))
fmt.Println(math.Max(-1.3, 0))
fmt.Println(math.Min(-1.3, 0))
fmt.Println(math.Dim(-12, -19))
fmt.Println(math.Dim(-12, 19))
fmt.Println(math.Cbrt(8))
fmt.Println(math.Hypot(3, 4))
fmt.Println(math.Pow(2, 8))
}