输出
```python
>>>print('The quick brown fox','jumps over','the lazy dog')
The quick brown fox jumps over the lazy dog
>>>print('100 + 200 =',100+200)
100+200=300
>>>print(100+200)
300
```
输入
```python
>>>name = input()
Zhangh
>>>name
'Michael'
```
输出
```python
>>>print('The quick brown fox','jumps over','the lazy dog')
The quick brown fox jumps over the lazy dog
>>>print('100 + 200 =',100+200)
100+200=300
>>>print(100+200)
300
```
输入
```python
>>>name = input()
Zhangh
>>>name
'Michael'
```