| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 50917 | 张思存 | [在线测评解答教程] A+B Problem | C++ | Accepted | 1 MS | 240 KB | 154 | 2024-09-15 22:33:45 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; double z; cin >> a>>b ; z=a+b; cout<< z; return 0; }