Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
113438 | WDF | 02简单两数相加 | Python3 | Compile Error | 0 MS | 0 KB | 112 | 2025-03-15 18:26:43 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a+b; return 0; }
File "Main.py", line 2 using namespace std; ^ SyntaxError: invalid syntax