代码:
#include <iostream> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<(a+1)*(b+1)<<endl; return 0; }
然后 WA 了!
Why?