Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
13 | liutaoxwl | [在线测评解答教程] A+B Problem | C++ | Accepted | 0 MS | 252 KB | 119 | 2022-10-18 15:09:49 |
#include<iostream> int main() { int a, b; std::cin>>a>>b; std::cout<<(a+b)<<std::endl; return 0; }