You are given a string $S$. Print string $S$ 3 times.
### Input
- String $S$.
### Output
- Print string $S$ 3 times. 
### Constraints
-  Length of string $S$ does not exceed 100.
### Example
Input:
```
Goodbye, Marisa!
```
Output:
```
Goodbye, Marisa!
Goodbye, Marisa!
Goodbye, Marisa!
```