用int設兩個數
cin兩個數
直接cout兩變數相加即可
#include <iostream>using namespace std;int main(){ ios::sync_with_stdio(0); cin.tie(0); int a,b; cin>>a>>b; cout<<a+b;
return 0;}