Triple-quoted string

Report a typo

Create a program that will print this multi-line string containing triple double quotes:

"""
THIS IS A STRING
"""

Note: quotes, too, should be printed!

You need to surround this string with quotes of another type, so those quotes will be considered the end and the beginning of the string. The new outer quotes must differ from the inner quotes. Also, don't forget that your string must be multi-line!
Write a program in Python 3
print(...)
___

Create a free account to access the full topic