Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
1288 | wsy18287021689 | A+B问题 | C++ | Accepted | 0 MS | 244 KB | 129 | 2022-11-24 21:57:12 |
#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>b; c=a+b; cout<<c<<endl; return 0; }