| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 20395 | 梅煦洋 | 求两位整数各个位上的数字和 | C++ | Accepted | 100 | 0 MS | 260 KB | 143 | 2021-06-12 16:07:52 |
#include<bits/stdc++.h> using namespace std; int main( ){ int a,b,x=0,y=0; scanf("%d",&a); x=a%10; y=a/10; cout<<x+y; return 0; }