用户输出
13379
系统信息
Exited with return code 0
编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#82265 | #113. 送分 A + B | Accepted | 100 | 126 ms | 3736 K | C# / 440 B | Dcrfasriel | 2023-03-12 23:09:17 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Text.RegularExpressions;
namespace ConsoleApp5
{
internal class Program
{
static void Main(string[] args)
{
var s = Console.ReadLine().Split(' ');
Console.WriteLine(int.Parse(s[0]) + int.Parse(s[1]));
}
}
}