1315: 【Python】(String)输出引号

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:47 Solved:34

Description

Python中引号用于标记字符串的开始和结束。
如:
a = "Hello"
b = 'Apple'
但如果字符串中有引号,则需要特殊处理。
请输出如下的一段话。
It's raining. 
I don't have an umbrella. 
Don't worry. 
Do you have an umbrella? 

Input

Output

如题。

Sample Input Copy


Sample Output Copy

It's raining. 
I don't have an umbrella. 
Don't worry. 
Do you have an umbrella? 

Source/Category