145 条题解

  • -2
    @ 2023-7-18 18:53:00
    #include <bits/stdc++.h>
    using namespace std;
    int main() {
        //以下三行为输入输出超大数据时标准输入输出流的加速
        ios::sync_with_stdio(false);
        cin.tie(0);
        cout.tie(0);
        long long a,b;
        cin>>a>>b;
        cout<<a+b<<endl;
        return 0;
    }
    

    信息

    ID
    56
    时间
    1000ms
    内存
    1024MiB
    难度
    1
    标签
    递交数
    9074
    已通过
    4044
    上传者