Patrick ⭐ has created a very simple Go program that takes 2 of his most famous phrases as a string input and then concatenates them by using the strings.Builder type. Unfortunately, he forgot to print out the concatenated string!
Please help Patrick write the missing method call required to print out the concatenated string.
This problem uses the
bufio and os packages to read a whitespace-separated string from the input. To solve this task, you don't need to know how the bufio/os packages work; the only objective is to write the missing method call within the fmt.Println() statement.