Accepted
Code
#include <bits/stdc++.h>
using namespace std;
#define MOD 998244353
#define ll long long
#define ull unsigned long long
#define ld long double
const int MAX_n = 1e5 + 5;
#define MAX_X 1000000
const int InF = 1e9; // for int
const ll INF = 1e18; // for ll
void solve()
{
int a,b;
cin>>a>>b;
cout<<a+b<<endl;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
solve();
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1000 A + B
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2025-06-13 11:07:06
- Judged At
- 2025-06-13 11:07:06
- Judged By
- Score
- 100
- Total Time
- 4ms
- Peak Memory
- 532.0 KiB