프로그래머스 C# 덧셈식 출력하기
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); } }
2023.05.21