1035, Nokia 1035
Echo Wall
Time Limit: 1000 MS Memory Limit: 65536 K
Total Submit: 401 Accepted: 177
Description
When he was a child, Tang lives in his hometown in the countryside. His hometown has a high mountain. Every time he gets bored, he speaks to the mountains. At this time, the mountains also say the same thing to him (ECHO ). Now, although Tang Qiao has grown up, he often remembers his childhood stories. He thought: How nice it would be if you could feel it again!
Please program the echo simulation program.
Input
There are multiple rows of input data. Each row is a string (consisting of only letters). The maximum length of a string is 15. End with EOF.
Output
Output the same content for each line of input.
Sample Input
HelloTQ
Sample Output
HelloTQ
Source
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace AK1035 { class Program { static void Main(string[] args) { string sb; while ((sb = Console.ReadLine()) != null) { Console.WriteLine(sb); } } } }
Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger. Welcome to share your nice codes!