Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
60343 | _JF_ | J2 | C++ | 通过 | 100 | 0 MS | 252 KB | 299 | 2022-10-15 11:26:36 |
#include<bits/stdc++.h> using namespace std; const int N =1e6+10; #define int long long signed main() { //freopen("J2.in","r",stdin); //freopen("J2.out","w",stdout); int n,m; cin>>n>>m; int s1=n%10,s2=n/10%10; int l1=m%10,l2=m/10%10; cout<<(s1+s2)*(l1+l2)<<endl; return 0; }