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