# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1149679 | D1fyyy | A + B (IOI24_aplusb) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int MXN = 1e5 + 1;
const int INF = 1e13 + 7;
int sum(int a, int b) {
return a + b;
}
void slv() {
int a, b; cin >> a >> b;
cout << sum(a,b) << endl;
}
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr); cout.tie(nullptr);
int t = 1; //cin >> t;
while (t--) slv();
}