package main import "fmt" func main() { for x := 1; x <= 3; x++ { fmt.Println(x) } }