using System;
class Program {
static void Main(string[] args) {
while (true) {
string input = Console.ReadLine();
if (string.IsNullOrEmpty(input) == true) break;
Console.WriteLine(input);
}
}
}
문제 출처
https://www.acmicpc.net/problem/11718
'ComputerScience > Coding Test' 카테고리의 다른 글
백준 11382번: 꼬마 정민 (0) | 2022.11.12 |
---|---|
백준 9086번: 문자열 (0) | 2022.11.12 |
백준 2754번: 학점계산 (0) | 2022.11.12 |
백준 2744번: 대소문자 바꾸기 (0) | 2022.11.12 |
백준 2743번: 단어 길이 재기 (0) | 2022.11.12 |