package main import "fmt" func main() { var s, t string _, _ = fmt.Scan(&s, &t) fmt.Printf("(%s%s%s)/\n", s, t, s) }