package main
import "fmt"
const (
a = "123123"
b = "123123"
)
func main() {
a, b := 1, 2
fmt.Println(a, b)
}