1123 -- A+B

来源:互联网 发布:淘宝新手教程视频 编辑:程序博客网 时间:2024/05/04 22:41

A+B

Time Limit:1000MS  Memory Limit:65536K
Total Submit:474 Accepted:367

Description

输入整数a ,b

Input

1 2

Output

3

Sample Input

1 2

Sample Output

3

Source

    using System;    using System.Collections.Generic;    using System.Linq;    using System.Text;    namespace AK1123 {        class Program {            static void Main(string[] args) {                string[] s = Console.ReadLine().Split();                int a = int.Parse(s[0]), b = int.Parse(s[1]);                Console.WriteLine(a + b);                //Console.ReadLine();            }        }    }


0 0
原创粉丝点击