package main import "fmt" func main() { var n int fmt.Scan(&n) for range make([]struct{}, n) { fmt.Println("Hello! You're new here, right? It's nice to meet you.") } }