Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
345805 | 田钰皓 | [在线测评解答教程] A+B 问题(有框架) | C++ | Accepted | 100 | 4 MS | 248 KB | 110 | 2025-09-06 15:05:32 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a+b; return 0; }