# Enter a
print(r'''"To be, or not to be":that is the question.
Whether it's nobler in the mind to suffer.''')
用r'''……'''来输出,为什么到最后suffer那里是三个'''而不是四个'''',(有一个'是题目里有的)
是4个,加上空格就行,记得在'''与'中间加上空格,'和"中间也要加上空格
print(r''' ' " To be, or not to be":that is the question.
Whether it's nobler in the mind to suffer.' ''')
r'''……'''的好处就是,完全不需要考虑\了