文章
28
粉丝
230
获赞
23
访问
241.9k
#include <iostream>
#include <string>
using namespace std;
int main(int argc, char const *argv[])
{
string str1,str2;
while(cin>>str1>>str2){
long long Sum = 0 ;
for (int i = 0; i < str1.length(); ++i)
{
for (int j = 0; j < str2.length(); ++j)
{
Sum+=(str1[i]-'0')*(str2[j]-'0');
}
}
cout<<Sum<<endl;
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发