[프로그래머스 | C# | Lv.0] 문자열 붙여서 출력하기

728x90

https://school.programmers.co.kr/learn/courses/30/lessons/181946

📝 나의 풀이

using System;

public class Example
{
    public static void Main()
    {
        String[] input;

        Console.Clear();
        input = Console.ReadLine().Split(' ');

        String s1 = input[0];
        String s2 = input[1];
        
        Console. WriteLine(s1+s2);

    }
}
728x90