package main

import "fmt"

func main() {
  shit := "\u000";
  for i := 0; i < 1000; i++ {
    fmt.Println(shit)
    shit++
  }
}
