| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 77476 | sh25_zhangjiajia | A+B问题 | C++ | Accepted | 0 MS | 244 KB | 133 | 2025-12-26 14:15:44 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin >> a>>b; int num = 0; cout << a+b; return 0; }