| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 50452 | lihaocheng | 求小数的某一位 | C++ | Wrong Answer | 0 MS | 244 KB | 127 | 2024-08-24 15:55:11 |
#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b)cout<<(a+b)<<endl; return 0; }