package main
import "fmt"
const (
a = "123123"
b = "123123"
)
func main() {
for k, l := 0, 10; k < l; k, l = k+1, l-1 {
}
fmt.Println(a, b)