package main
import "fmt"
func printOnes() {
for {
fmt.Println("1")
}
func main() {
go printOnes()
fmt.Println("0")