package main import "fmt" func main() { var N int fmt.Scan(&N) for i := 0; i < N-1; i++ { fmt.Print(0, " ") } fmt.Print(1) fmt.Println() }