Submit solution
Points:
1 (partial)
Time limit:
2.0s
Memory limit:
64M
Author:
Problem type
Allowed languages
Java
Given a string , output three times.
Input Specification
The input will consist of one line containing string .
String will only contain lowercase latin characters.
The length of string will be greater than or equal to 1 and less than or equal to 100.
Output Specification
Output string three times, each on a different line.
Sample Input 1
hello
Sample Output 1
hello
hello
hello
Sample Input 2
triple
Sample Output 2
triple
triple
triple
Comments