Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
60314 | xyh2022 | J2 | C++ | 通过 | 100 | 0 MS | 256 KB | 278 | 2022-10-15 11:24:55 |
#include<bits/stdc++.h> using namespace std; int a,b,a1[5],b1[5]; int main(){ //freopen("J2.in","r",stdin); //freopen("J2.out","w",stdout); scanf("%d%d",&a,&b); a1[0]=a/10,a1[1]=a%10; b1[0]=b/10,b1[1]=b%10; printf("%d",(a1[0]+a1[1])*(b1[0]+b1[1])); return 0; }