package main

import (
    "fmt"
    "math"
    

)

func add(a , b int)int{
        return a + b
}

func main() {
    add :=add(78,2)
    pow := math.Pow(10,3)
    sqrt := math.Sqrt(81)
    fmt.Println("add:",add)
    fmt.Println("Hello world!")
    fmt.Println("pow:",pow)
    fmt.Println("sqrt:",sqrt)
    fmt.Println(math.Cbrt(300))
    fmt.Println(math.Cbrt(5000))
    for i:=0; i<3000;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: