String - MarisaOJ: Marisa Online Judge

String

Time limit: 1000 ms
Memory limit: 256 MB
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! ```