0 Compile Error

Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python2.7/py_compile.py", line 117, in compile
    raise py_exc
py_compile.PyCompileError:   File "/w/foo.py", line 2
    using namespace std;
                  ^
SyntaxError: invalid syntax

代码

#include <iostream>
using namespace std;
int main()
{
    long long int a,b;
    cin >> a >> b;
    cout << a*b;
    return 0;
}

信息

递交者
题目
DJKS1017  计算乘积
比赛
等级考试一级阶段测试
语言
Python 2
递交时间
11 个月前
评测时间
11 个月前
分数
0
总耗时
0ms
峰值内存
0 Bytes