Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5384 邓小龙 求和 C++ Accepted 0 MS 264 KB 191 2024-11-14 20:04:59

Tests(1/1):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ int a=123; int b=456; printf("sum is %d",a+b); return 0; }