用户输出
13379
系统信息
Exited with return code 0
编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#84527 | #113. 送分 A + B | Accepted | 100 | 7 ms | 264 K | C++ 11 / 619 B | ws2092291971 | 2023-05-07 13:20:01 |
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define endl '\n';
const int INF = 0x3f3f3f3f;
const ll mod = 998244353;
const int N = 200005, M = 1000005;
typedef pair<int, int> PII;
ll extend_gcd(ll a, ll b, ll &x, ll &y) {
if (b == 0) {
x = 1;
y = 0;
return a;
}
ll d = extend_gcd(b, a % b, y, x);
y -= a / b * x;
return d;
}
void solve() {
int i, j;
cin >> i >> j;
cout << i + j;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int i, j;
int t;
t = 1;
while (t--) {
solve();
}
return 0;
}