Accepted
Code
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
#ifndef ONLINE_JUDGE
#define debug(x) cerr << #x << " = " << x << endl
#else
#define debug(x)
#endif
using ll = long long;
void Solve()
{
int a, b;
cin >> a >> b;
cout << a + b ;
}
int32_t main()
{
ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);
ll t = 1;
// cin >> t;
while (t--)
Solve();
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1000 A + B
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2025-08-09 17:47:52
- Judged At
- 2025-08-09 17:47:52
- Judged By
- Score
- 100
- Total Time
- 2ms
- Peak Memory
- 536.0 KiB