Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
353356 | 胡珂 | 【C6-1】简单a+b | C++ | Accepted | 100 | 1 MS | 252 KB | 123 | 2025-09-30 18:08:57 |
#include <bits/stdc++.h> using namespace std; int main(){ int a,b; scanf("%d+%d=",&a,&b); cout<<a+b; return 0; }