这又是一道很基础的题。 题解如下: #include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; a%=100; b%=100; cout<<(a+b)%100; &n...