1000 A+B

Console/Algorithm 2019. 9. 25. 16:43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            string input = Console.ReadLine();
            string[] input1 = input.Split();
            int a = int.Parse(input1[0]);
            int b = int.Parse(input1[1]);
            Console.WriteLine(a + b);
        }
    }
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
 

'Console > Algorithm' 카테고리의 다른 글

9655 돌 게임  (0) 2019.09.26
10998 A x B  (0) 2019.09.25
1001 A-B  (0) 2019.09.25
10718 강한친구 대한육군  (0) 2019.09.25
2557 Hello World!  (0) 2019.09.25