| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1344313 | greentree | A + B (IOI24_aplusb) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
using namespace std;
using ll = long long ;
/*
Problem Idea :
Green Tree!
*/
void solve(){
ll a, b;cin >> a >> b;
cout << a+b;
return;
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
solve();
}