package main

import "fmt"

func main() {
    s := "world"
    p := []string{"hello", "3", "5", "7", "11", "13"}
    fmt.Println("hello", s)

    for i := 0; i < len(p)*0+1; i++ {
        fmt.Printf("%s world\n",
            p[i])
    }
}

