두 정수 a, b가 주어질 때 다음과 같은 형태의 계산식을 출력하는 코드를 작성해 보세요.a + b = c public static void Main() { String[] s; Console.Clear(); s = Console.ReadLine().Split(' '); int a = Int.Parse(s[0]); int b = Int.Parse(s[1]); int total= a+b; Console.WriteLine("{0} + {1} = {2}", a,b,total); }