提交记录 16240
| 提交时间 |
评测时间 |
| 2021-06-03 14:55:00 |
2021-06-03 14:55:03 |
#include <bits/stdc++.h>
using namespace std;
namespace DEBUG {
void debug_out() { cerr << '\n'; }
template <typename Head, typename... Tail>
void debug_out(Head H, Tail... T) {
cerr << ' ' << to_string(H);
debug_out(T...);
}
#ifdef HRJ
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
#else
#define debug(...)
#endif
} using namespace DEBUG;
typedef long long ll;
int main() {
#ifndef HRJ
ios::sync_with_stdio(false); cin.tie(0);
#endif
int a, b;
cin >> a >> b;
cout << a + b;
return 0;
}
| Compilation | N/A | N/A | Compile Error | Score: N/A | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-03-19 13:24:08 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠