| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 20292 | 张熠欣 | 求两位整数各个位上的数字和 | C++ | Accepted | 100 | 0 MS | 252 KB | 129 | 2021-06-07 20:10:18 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,g,s; cin>>a; g=a%10; s=a/10; cout<<g+s; return 0; }