T793310 MAL接口测试
题目背景
[仓库链接](https://github.com/majonori/MAL)
题目描述
输入两个整数 $a,b$,输出它们的和 $a+b$。
输入格式
一行两个整数 $a,b$。
输出格式
一个整数,表示 $a+b$。
说明/提示
对于 $100\%$ 的数据,$-10^{1000}\le a,b\le 10^{1000}$。
使用 MAL 代码示例:
```cpp
#include
namespace mal {
namespace remote {
struct BigInt {
std::string s;
BigInt(const std::string& x = "0") : s(x) {}
BigInt(long long x) : s(std::to_string(x)) {}
std::string to_string() const;
};
BigInt operator+(const BigInt& a, const BigInt& b);
BigInt operator-(const BigInt& a, const BigInt& b);
BigInt operator*(const BigInt& a, const BigInt& b);
BigInt operator/(const BigInt& a, const BigInt& b);
std::ostream& operator b;
mal::BigInt x(a), y(b);
std::cout