프로그래머스 C# 덧셈식 출력하기

2023. 5. 21. 21:14C# 알고리즘 코딩(프로그래머스)

using System;

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

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

        int a = Int32.Parse(s[0]);
        int b = Int32.Parse(s[1]);
        int c = a + b;

        Console.WriteLine("{0}", a + " + " + b + " = " + c);
    }
}