package main
import (
"fmt"
"strings"
)
func main() {
str := "I bought running shoes, but they started running alone, now we are both happy"
substring := "running"
// Find the position of the first occurrence of substring
position := strings.Index(str, substring)
fmt.Println(position)
}
/*
run:
9
*/