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