模拟加法运算。零空间开销! # include<bits/stdc++.h> using namespace std; int main() { string s1, s2; getline(cin, s1); getline(cin, s2); int len1 = s1.le...