Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
107523 赵畅 求和 C++ Accepted 1 MS 260 KB 150 2025-01-18 09:37:58

Tests(1/1):


Code:

#include <iostream> #include <cstdio> using namespace std; int main() { int a=123,b=456; cout<<"sum is "<<a+b; return 0; }