1123 -- A+B

论坛 期权论坛 脚本     
匿名技术用户   2020-12-28 10:51   43   0

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 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:7942463
帖子:1588486
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP