A+B Problem : 题解 .

C2024010 2024-07-15 21:44:21 2024-09-01 19:30:20

#include<bits/stdc++.h>

using namespace std;

int main() {

auto a=3,b=3;

cin>>a>>b;

cout<<a+b;

return 0;

}