模组测试
暂无测试数据。
Background
小罗制作了一个实用性的模组,加入了N种金属(铜、钢、阿迪特、钴、秘银等)与M种工具(鹤嘴锄、战斧、钉头锤,诸如此类)
Description
为了方便,小罗按金属的硬度给金属按\(1\sim n\)编号,给工具按\(1\sim m\)编号。
小罗要测试这个模组有没有~~bug~~特性,于是建了一个存档,造了一些工具他用第\(i\)种金属做出的\(j\)种工具有\(a_{i,j}\)个。(当然,小罗用同种金属做出的同种工具有不同的附魔属性)
小罗现在有\(\sum\limits_{i=1}^n\sum\limits_{j=1}^m a_{i,j}\)个工具。
现在,他要下矿已测试模组,然而,他每次下矿都有要求。
Format
Input
Two integers x and y, satisfying 0 <= x, y <= 32767.
Output
One integer, the sum of x and y.
Sample 1
Input
123 500
Output
623
Limitation
1s, 1024KiB for each test case.
Hint
C++ Code
#include <iostream>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}
Source
Vijos Original
信息
- ID
- 1006
- 难度
- (无)
- 分类
- (无)
- 标签
- (无)
- 递交数
- 0
- 已通过
- 0
- 通过率
- ?
- 上传者