Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
58103 | 王一涵(吃土豆长大的马铃薯) | A+B问题 | C++ | Accepted | 0 MS | 244 KB | 111 | 2024-12-04 16:48:15 |
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; cout<<a+b; return 0; }