# single-line strings
print('"There should be no such thing as boring mathematics." -- Dijkstra\'s quote')
print("\"There should be no such thing as boring mathematics.\" -- Dijkstra's quote")
print('"There should be no such thing \
as boring mathematics." \
-- Dijkstra\'s quote')
print('"There should be no such thing '
+ 'as boring mathematics." '
+ "-- Dijkstra's quote")
# two-line strings:
print('"There should be no such thing as boring mathematics." \n\t-- Dijkstra\'s quote')
print("\"There should be no such thing as boring mathematics.\" \n\t-- Dijkstra's quote")
quote = '"There should be no such thing as boring mathematics." \n\
\t-- Dijkstra\'s quote'
print(quote)
print(""""There should be no such thing as boring mathematics."
-- Dijkstra\'s quote""")
quote = """"There should be no such thing as boring mathematics."
-- Dijkstra\'s quote"""
print(quote)