4 条题解

  • 0
    @ 2025-9-10 13:30:28

    水题,a+ba+b即可

    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	int a,b;
    	cin>>a>>b;
    	cout<<a+b;
    	return 0;
    }
    

    信息

    ID
    1
    时间
    1000ms
    内存
    256MiB
    难度
    7
    标签
    (无)
    递交数
    1652
    已通过
    396
    上传者