1 solutions

  • 0
    @ 2026-1-30 23:35:15

    我将尝试一下这个题解功能。
    然后毕竟是题解,即使是大名鼎鼎的 A+B problemA+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;
    } 
    

    Information

    ID
    1
    Time
    1000ms
    Memory
    64MiB
    Difficulty
    10
    Tags
    # Submissions
    6
    Accepted
    5
    Uploaded By