package main

import (
    "fmt"
    "math"
    )

func main() {
    fmt.Println(math.Sin(30))
    fmt.Println(math.Sqrt(81))
    fmt.Println(math.Cbrt(300))
    fmt.Println(math.Pow(10,2))
    fmt.Println(math.Log10(2))
    fmt.Println(math.Log10(3))
    fmt.Println(math.Log10(20))
    fmt.Println(math.Log10(55))
    fmt.Println(math.Log10(82))
    fmt.Println(math.Tan(45))
    fmt.Println(math.Tan(82))
    {
        for i:=0;i<7800;i++{
            fmt.Println(i)
        }
        fmt.Println("Anup Kumar Tirkey is a Mech Engr")
    }
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: