백준 10952 C#

문제: https://www.acmicpc.net/problem/10952

using System;
using System.Collections.Generic;

namespace practice
{
    class Program
    {
        static void Main(string[] args)
        {
           List<int> addList = new List<int>();

           for (;;)
           {
               string[] inputAB = Console.ReadLine().Split();
               int n = int.Parse(inputAB[0]);
               int x = int.Parse(inputAB[1]);
               
               if (n == 0 && x == 0) break;

               addList.Add(n+x);
           }

           for (int i = 0; i < addList.Count; i++)
           {
               Console.WriteLine(addList[i]);
           }
           
        }
    }
}

좋은 웹페이지 즐겨찾기