fun main() {
val str = "I bought running shoes, but they started running alone, now we are both happy"
val substring = "running"
// Find the position of the first occurrence of a substring
val position = str.indexOf(substring)
println(position)
}
/*
run:
9
*/