Given a string s and a non-negative integer n, return the string obtained by concatenating n copies of s. If n is 0 or s is empty, return an empty string. You must implement the concatenation recursively.
Input: A string s and a non-negative integer n, formatted as "s", n.
Output: Return the concatenated string wrapped in double quotes.
Input: "ab", 3
Output: "ababab"
Explanation: 'ab' repeated three times.Input: "hi", 0
Output: ""
Explanation: Zero copies -> empty string.Input: "x", 5
Output: "xxxxx"
Explanation: Five copies of 'x'.0 <= s.length <= 1000 <= n <= 100Final length <= 10^4