Seeing Triple

View as PDF

Submit solution

Points: 1 (partial)
Time limit: 2.0s
Memory limit: 64M

Author:
Problem type
Allowed languages
Java

Given a string S, output S three times.

Input Specification

The input will consist of one line containing string S.

String S will only contain lowercase latin characters.

The length of string S will be greater than or equal to 1 and less than or equal to 100.

Output Specification

Output string S 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

There are no comments at the moment.