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