Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
59909 | Xiyou | [在线测评解答教程] A+B Problem | C++ | Accepted | 0 MS | 240 KB | 122 | 2024-12-30 21:29:12 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n>>m; cout<<n+m; return 0; }