a+b Problem chen_children · 2025-11-01 20:33:27 · 题解 include<bits/stdc++.h> using namespace std; int a,b; int main() { cin>>a>>b; cout<<a+b; return 0; }