package main

import "fmt"

func main() {
    fmt.Println("Hi")
    {
        for i:=0 ; i<7;i++{
            fmt.Println(i)
        }
        for i:= 0; i<9; i++{
            fmt.Println(i)
        }
        for j:=0;j<20;j++{
            if j==19{
                    continue
            }
            fmt.Println(j)
        }
        for k:=0; k<30;k++{
            if k==20{
                    break
            }
            fmt.Println(k)
        }
        fmt.Println("anup kumar tirkey is a mech engr")
        fmt.Println("18.02.26")
    }
}

Embed on website

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