1 solutions
Information
- ID
- 1
- Time
- 1000ms
- Memory
- 64MiB
- Difficulty
- 10
- Tags
- # Submissions
- 6
- Accepted
- 5
- Uploaded By
我将尝试一下这个题解功能。
然后毕竟是题解,即使是大名鼎鼎的 A+B problem,也还是粘一下代码,就当是分享一下马蜂了,不然被发工单。
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long LL;
LL a, b;
int main() {
ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
cin >> a >> b;
cout << a+b;
return 0;
}
By signing up a Hydro universal account, you can submit code and join discussions in all online judging services provided by us.