[Baekjoon 1단계(1)] 2557번 : Hello World
출제 링크 : https://www.acmicpc.net/problem/2557 2557번: Hello World Hello World!를 출력하시오. www.acmicpc.net using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Solution { class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); } } }