61. What is the output of the following code:
import re
result = re.sub(r's', '-', 'This is a test.')
print(result)
import re
result = re.sub(r's', '-', 'This is a test.')
print(result)