#265. makeTags
makeTags
Background
Description
The web is built with HTML strings like "Yay" which draws Yay as italic text. In this example, the "i" tag makes and which surround the word "Yay". Given tag and word strings, create the HTML string with tags around the word, e.g. "Yay".
Format
Input
Output
Samples
i" "Yay
"<i>Yay</i>"
i" "Hello
"<i>Hello</i>"
cite" "Yay
"<cite>Yay</cite>"
Limitation
1s, 1024KiB for each test case.