Given a string $S$ containing characters and spaces, convert all characters in the string to lowercase.
### Input
- A single line containing the string $S$.
### Output
- Print the string $S$ with all characters in lowercase.
### Constraints
- $1 \le |S| \le 1000$.
### Sample test
```
MaRisA
```
Output:
```
marisa
```