package main

import ("fmt"
        "math")

func main() {
    fmt.Println("Hi")
    fmt.Println(math.Sin(45))
    fmt.Println(math.Cos(30))
    fmt.Println(math.Tan(30))
    for i:=0;i<600;i++{
        fmt.Println(i)
    }
    fmt.Println("Anup Kumar is a Mech en")
}

Embed on website

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