s_id
string
p_id
string
u_id
string
date
string
language
string
original_language
string
filename_ext
string
status
string
cpu_time
string
memory
string
code_size
string
code
string
error
string
stdout
string
s515484436
p02389
u180914582
1438571019
Python
Python3
py
Runtime Error
0
0
77
x = input().split() a = int(x[0]) b = int(x[1]) print((a * b),(a + b) * 2))
File "/tmp/tmp47cowxlw/tmp6cz85j_z.py", line 6 print((a * b),(a + b) * 2)) ^ SyntaxError: unmatched ')'
s832171466
p02389
u686134343
1439171754
Python
Python3
py
Runtime Error
0
0
12
????????????
File "/tmp/tmppkh3rxh_/tmpmh09mcl2.py", line 1 ???????????? ^ SyntaxError: invalid syntax
s124097293
p02389
u676498528
1439175854
Python
Python3
py
Runtime Error
0
0
60
( a, b) = input(), sprit() a = int(a) b = int(b) a*b a*2+b*2
File "/tmp/tmp8y2zttp5/tmpq7ub4eyw.py", line 4 a*b a*2+b*2 ^ SyntaxError: invalid syntax
s784548278
p02389
u676498528
1439176277
Python
Python3
py
Runtime Error
0
0
66
( a, b) = input().sprit() a = int(a) b = int(b) print(a*b a*2+b*2)
File "/tmp/tmpk6thvw80/tmp2uu4mfrl.py", line 4 print(a*b a*2+b*2) ^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s301626396
p02389
u676498528
1439176484
Python
Python3
py
Runtime Error
0
0
67
( a, b) = input().sprit() a = int(a) b = int(b) print(a*b, a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpqe2z0fd5/tmpjymhexyc.py", line 1, in <module> ( a, b) = input().sprit() ^^^^^^^ EOFError: EOF when reading a line
s921500470
p02389
u138661634
1440743389
Python
Python3
py
Runtime Error
0
0
80
a, b = [int(x) for i in input().split()] m = a * b n = a * 2 + b * 2 print(m, n)
Traceback (most recent call last): File "/tmp/tmprscia1rh/tmpumnutuo6.py", line 1, in <module> a, b = [int(x) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s063786471
p02389
u100054264
1441028093
Python
Python
py
Runtime Error
0
0
142
import sys vert_len = int(sys.argv[1]) hori_len = int(sys.argv[2]) area_size = vert_len * hori_len circular_len = 2 * vert_len + 2 * hori_len
Traceback (most recent call last): File "/tmp/tmpiejaralp/tmpdqn_6kh1.py", line 3, in <module> vert_len = int(sys.argv[1]) ~~~~~~~~^^^ IndexError: list index out of range
s699358905
p02389
u522477969
1441725936
Python
Python
py
Runtime Error
0
0
109
l = map(int,raw_input().split() ) men = l[0] * l[1] shu = (l[0] + l[1]) * 2 print(str(men) + " " + str(shu)
File "/tmp/tmp99_szycf/tmpcl0fy1el.py", line 5 print(str(men) + " " + str(shu) ^ SyntaxError: '(' was never closed
s299087420
p02389
u253463900
1442198545
Python
Python3
py
Runtime Error
0
0
92
data = input() len = data.split() ans = int(data[0]) * int(data[1]) print('{0}'.format(ans))
Traceback (most recent call last): File "/tmp/tmphnrse9go/tmp37ze8m8f.py", line 1, in <module> data = input() ^^^^^^^ EOFError: EOF when reading a line
s653084183
p02389
u408701661
1442198715
Python
Python
py
Runtime Error
0
0
132
input = raw_input() s = int(input.split()[0]) l = int(input.split()[1]) ans_1 = s*l ans_2 = 2*(s+l) print src(ans_1)+" "+src(ans_2)
File "/tmp/tmpwnfkb932/tmpu6n0ucjt.py", line 7 print src(ans_1)+" "+src(ans_2) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s095553496
p02389
u894381890
1442199171
Python
Python
py
Runtime Error
0
0
95
inport sys x = sys.stdin.readline() a, b = x.split(" ") S = a * b l = 2 * (a + b) print S,l
File "/tmp/tmpjmgpdncp/tmpu4per0w6.py", line 1 inport sys ^^^ SyntaxError: invalid syntax
s464054035
p02389
u729824721
1442199176
Python
Python
py
Runtime Error
0
0
120
import sys line = sys.stdin.readline() tate, yoko = line.split(" ") S = tate * yoko T = 2 * (tate + yoko) print S, T
File "/tmp/tmp7cwfx2ez/tmpxjwokb2s.py", line 10 print S, T ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s127323052
p02389
u729824721
1442199208
Python
Python
py
Runtime Error
0
0
124
import sys line = sys.stdin.readline() tate, yoko = line.split(" ") S = tate * yoko T = 2 * (tate + yoko) print S, " " T
File "/tmp/tmp5x323gkt/tmpwor2a9nl.py", line 10 print S, " " T ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s457871173
p02389
u729824721
1442199217
Python
Python
py
Runtime Error
0
0
125
import sys line = sys.stdin.readline() tate, yoko = line.split(" ") S = tate * yoko T = 2 * (tate + yoko) print S, " ", T
File "/tmp/tmp_z0mkykw/tmpohf4g6_0.py", line 10 print S, " ", T ^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s832928290
p02389
u894381890
1442199225
Python
Python
py
Runtime Error
0
0
95
inport sys x = sys.stdin.readline() a, b = x.split(" ") S = a * b l = 2 * (a + b) print S l
File "/tmp/tmp95z85py0/tmppq1ei190.py", line 1 inport sys ^^^ SyntaxError: invalid syntax
s985197383
p02389
u894381890
1442199260
Python
Python
py
Runtime Error
0
0
118
inport sys x = sys.stdin.readline() a, b = x.split(" ") a = int(a) b = int(b) S = a * b l = 2 * (a + b) print S l
File "/tmp/tmp2_ry96aq/tmpawm9o36a.py", line 1 inport sys ^^^ SyntaxError: invalid syntax
s500977472
p02389
u729824721
1442199326
Python
Python
py
Runtime Error
0
0
169
import sys line = sys.stdin.readline() tate, yoko = line.split(" ") tate = int(tate) yoko = int(yoko) S = tate * yoko T = 2 * (tate + yoko) print ('%d %d") % (S, T)
File "/tmp/tmpndfpghve/tmp21zd7dpt.py", line 13 print ('%d %d") % (S, T) ^ SyntaxError: unterminated string literal (detected at line 13)
s920031556
p02389
u019737947
1442199365
Python
Python
py
Runtime Error
0
0
74
a = raw_input() b = raw_input() print int(a) * int(b), 2*(int(a) + int(b))
File "/tmp/tmpgnlaiecj/tmpr759zapf.py", line 3 print int(a) * int(b), 2*(int(a) + int(b)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s623203954
p02389
u894381890
1442199383
Python
Python
py
Runtime Error
0
0
128
inport sys x = sys.stdin.readline() a, b = x.split(" ") a = int(a) b = int(b) S = a * b l = 2 * (a + b) print '%d %d'%(S,l)
File "/tmp/tmpi5a76ufq/tmp5jl6bh1y.py", line 1 inport sys ^^^ SyntaxError: invalid syntax
s268088260
p02389
u894381890
1442199418
Python
Python
py
Runtime Error
0
0
130
inport sys x = sys.stdin.readline() a, b = x.split(" ") a = int(a) b = int(b) S = a * b l = 2 * (a + b) print '%d %d' % (S,l)
File "/tmp/tmp6g5dq3k7/tmp6fd5uz6v.py", line 1 inport sys ^^^ SyntaxError: invalid syntax
s441701531
p02389
u386372280
1442202636
Python
Python
py
Runtime Error
0
0
138
import sys input = sys.stdin.read() (a, b) = map(lambda x:int(x) , input.split(" ")) x = a*b y = 2*(a+b) print str(x) + "?\t" + str(y)
File "/tmp/tmpyvfzrtgs/tmphzne_g3a.py", line 10 print str(x) + "?\t" + str(y) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s202145276
p02389
u386372280
1442202770
Python
Python
py
Runtime Error
0
0
121
import sys input = sys.stdin.read() (a,b) = [int(x) for x in input.split(" ")] x = a*b y = 2*(a+b) print x + "?\t" + y
File "/tmp/tmpae96e616/tmpzwrsub7j.py", line 9 print x + "?\t" + y ^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s430753446
p02389
u313994256
1442242395
Python
Python
py
Runtime Error
0
0
78
list = map(int, raw_input().split()) print list[0]*list[1] 2*(list[0]+list[1])
File "/tmp/tmpmurcp9pa/tmpd2zfmbyp.py", line 2 print list[0]*list[1] 2*(list[0]+list[1]) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s536760782
p02389
u969115822
1442280766
Python
Python
py
Runtime Error
0
0
183
a = 0 b= 0 input_numbers = raw_input() fori in input_numbers: if input_numbers[0] == i: a = int(i) elif input_numbers[2] == i: b = int(i) print a * b, 2 * (a + b)
File "/tmp/tmpaelahv_e/tmp07jcg1u9.py", line 6 fori in input_numbers: ^ SyntaxError: invalid syntax
s594235878
p02389
u969115822
1442280811
Python
Python
py
Runtime Error
0
0
186
a = 0 b= 0 input_numbers = raw_input() fori in input_numbers: if input_numbers[0] == i: a = int(i) elif input_numbers[2] == i: b = int(i) print a * b, 2 * (a + b)
File "/tmp/tmpeddit_di/tmprsi87vo3.py", line 6 fori in input_numbers: ^ SyntaxError: invalid syntax
s499791469
p02389
u969115822
1442299475
Python
Python
py
Runtime Error
0
0
103
numbers = raw_input() numbers = numbers.split() a = numbers[0] b = numbers[1] print a * b, 2 * (a + b)
File "/tmp/tmpopf2evy8/tmp0nnb_l_v.py", line 6 print a * b, 2 * (a + b) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s769311951
p02389
u969115822
1442299684
Python
Python
py
Runtime Error
0
0
97
num = raw_input() num = numbers.split() a = int(num[0]) b = int(num[1]) print a * b, 2 * (a + b)
File "/tmp/tmpof0dq_v_/tmpif2eqeao.py", line 6 print a * b, 2 * (a + b) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s014717042
p02389
u665997200
1443014016
Python
Python
py
Runtime Error
0
0
108
a = input(); print(int(a.split()[0])*int(a.split()[1]),int(a.split()[0]) * 2 + int(a.split()[1])*2, end=" ")
Traceback (most recent call last): File "/tmp/tmp7e6qh83c/tmpz1o49yh9.py", line 1, in <module> a = input(); ^^^^^^^ EOFError: EOF when reading a line
s828888910
p02389
u154437061
1443493778
Python
Python
py
Runtime Error
10
6392
81
a = raw_input() x = int(a[0]) y = int(a[2]) s = x * y l = 2 * x + 2 * y print s,l
File "/tmp/tmpeq30lk4i/tmpngy_vnot.py", line 6 print s,l ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s126006309
p02389
u627893595
1443516320
Python
Python3
py
Runtime Error
0
0
183
using namespace std; main(){ int a, b; int area, length; cin >> a >> b; area = a * b; length =2*( a + b); cout << area << " " << length << endl; }
File "/tmp/tmp__qw38ib/tmpj3k3w2ws.py", line 1 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
s189414210
p02389
u089524441
1444975599
Python
Python3
py
Runtime Error
0
0
46
x = input() y = input() print(int(x) * int(y))
Traceback (most recent call last): File "/tmp/tmp8y9f_360/tmpdwla_kc2.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s465851941
p02389
u089524441
1444975639
Python
Python3
py
Runtime Error
0
0
66
x = input() y = input() num = int(x) num2 = int(y) print(num*num2)
Traceback (most recent call last): File "/tmp/tmp8essvexy/tmpez60crcx.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s935447577
p02389
u139034459
1445705539
Python
Python
py
Runtime Error
0
0
158
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input().split(" ") rect = var[0] * var[1] length = var[0] * 2 + var[1] * 2 print rect + " " + length
File "/tmp/tmpvn0by2ic/tmpi3e46z6u.py", line 8 print rect + " " + length ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s338639242
p02389
u139034459
1445705678
Python
Python
py
Runtime Error
0
0
178
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input().split(" ") rect = int(var[0]) * int(var[1]) length = int(var[0]) * 2 + int(var[1]) * 2 print rect + " " + length
File "/tmp/tmp1gavkraf/tmptu60a9t1.py", line 8 print rect + " " + length ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s118687968
p02389
u139034459
1445705725
Python
Python
py
Runtime Error
0
0
182
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input() print str(var) rect = int(var[0]) * int(var[1]) length = int(var[0]) * 2 + int(var[1]) * 2 print rect + " " + length
File "/tmp/tmp5gf1f678/tmp1sr32906.py", line 5 print str(var) ^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s445638143
p02389
u139034459
1445705805
Python
Python
py
Runtime Error
0
0
175
#!/usr/bin/env python # -*- coding: utf-8 -*- var = raw_input().split() rect = int(var[0]) * int(var[1]) length = int(var[0]) * 2 + int(var[1]) * 2 print rect + " " + length
File "/tmp/tmp5elv5cum/tmpspw_w19e.py", line 8 print rect + " " + length ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s706126384
p02389
u433833528
1446775119
Python
Python
py
Runtime Error
0
0
45
a = input() b = input() print a*b + 2*(a+b)
File "/tmp/tmp5g8bg1ox/tmpttylzh4q.py", line 3 print a*b + 2*(a+b) ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s197936610
p02389
u088335306
1446776006
Python
Python3
py
Runtime Error
0
0
79
i = map(int, raw_input().split()) a=i[0] b=i[1] print("%d %d" % (a*b, (a+b)*2))
Traceback (most recent call last): File "/tmp/tmphttrr2vf/tmpjc3fz_tm.py", line 1, in <module> i = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s601432789
p02389
u465282900
1446822267
Python
Python
py
Runtime Error
0
0
65
a=input() b=input() mennseki=a*b syuu=(a+b)*2 print mennseki,syuu
File "/tmp/tmp9uzyi5ad/tmpqok7vpzw.py", line 5 print mennseki,syuu ^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s921205301
p02389
u980683323
1449532744
Python
Python3
py
Runtime Error
0
0
40
x=int(input()) y=int(input()) print(x*y)
Traceback (most recent call last): File "/tmp/tmp0tzb14_l/tmpaeed2ruc.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s615887905
p02389
u980683323
1449532774
Python
Python3
py
Runtime Error
0
0
61
x=int(input()) y=int(input()) print("{} {}" % (x*y, 2*(x+y)))
Traceback (most recent call last): File "/tmp/tmpuers3onq/tmpzc_am8ui.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s488943395
p02389
u297949443
1449917681
Python
Python
py
Runtime Error
0
0
123
import sys a,b = map(int(x) ,sys.stdin.readline().split()) area = a*b surround = 2*(a+b) print("%d %d" % (area, surround))
Traceback (most recent call last): File "/tmp/tmpfdo2alab/tmpx7o_l__p.py", line 3, in <module> a,b = map(int(x) ,sys.stdin.readline().split()) ^ NameError: name 'x' is not defined
s805002254
p02389
u261533743
1450499073
Python
Python3
py
Runtime Error
0
0
59
data = list(map(int,input.split())) print data[0] * data[1]
File "/tmp/tmp826qx7mp/tmpb4rshb3a.py", line 2 print data[0] * data[1] ^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s912423766
p02389
u587712547
1451367238
Python
Python
py
Runtime Error
0
0
62
a,b = map(int, [i for i in input().split(' ')]) print a*2, b*2
File "/tmp/tmpcmdlm12a/tmpd6l7wwq2.py", line 2 print a*2, b*2 ^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s424928685
p02389
u587712547
1451367464
Python
Python
py
Runtime Error
0
0
66
a,b = map(int, [i for i in input().split(' ')]) print a*b, (a+b)*2
File "/tmp/tmpd_n9lupg/tmprizbqd7f.py", line 2 print a*b, (a+b)*2 ^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s705358486
p02389
u682357930
1452047098
Python
Python3
py
Runtime Error
0
0
52
n = input() print 2*(n[0]+n[1]); print n[0] * n[1];
File "/tmp/tmpnxl8fgo6/tmpccxbl2h1.py", line 3 print 2*(n[0]+n[1]); ^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s384171850
p02389
u970436839
1452047200
Python
Python
py
Runtime Error
0
0
41
a = input() b = input() print a*b 2*a+2*b
File "/tmp/tmpfzj8a6z3/tmpbym09dyp.py", line 1 a = input() b = input() ^ SyntaxError: invalid syntax
s782961198
p02389
u613805578
1452047253
Python
Python
py
Runtime Error
0
0
49
a = input() b = input() print a * b 2 * a + 2 * b
File "/tmp/tmpqysl88zm/tmpoliqdy31.py", line 1 a = input() b = input() ^ SyntaxError: invalid syntax
s627495982
p02389
u682357930
1452047271
Python
Python3
py
Runtime Error
0
0
75
n = map(int, raw_input().split); print(2*(n[0]+n[1])); print(n[0] * n[1]);
Traceback (most recent call last): File "/tmp/tmp4pobnmf7/tmpn6y7j2xi.py", line 1, in <module> n = map(int, raw_input().split); ^^^^^^^^^ NameError: name 'raw_input' is not defined
s561404150
p02389
u613805578
1452047284
Python
Python
py
Runtime Error
0
0
57
a = input() b = input() print a * b print 2 * a + 2 * b
File "/tmp/tmpnk20s8em/tmp1ifq0zt4.py", line 3 print a * b ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s045365062
p02389
u682357930
1452047299
Python
Python3
py
Runtime Error
0
0
77
n = map(int, raw_input().split()); print(2*(n[0]+n[1])); print(n[0] * n[1]);
Traceback (most recent call last): File "/tmp/tmpw3qy3heo/tmpqo0gir27.py", line 1, in <module> n = map(int, raw_input().split()); ^^^^^^^^^ NameError: name 'raw_input' is not defined
s225177326
p02389
u393769849
1452047332
Python
Python
py
Runtime Error
0
0
47
(a b) = input() print a * b print a * 2 + b * 2
File "/tmp/tmpgeysf_ij/tmpkyoa6i30.py", line 1 (a b) = input() ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s705443433
p02389
u682357930
1452047348
Python
Python3
py
Runtime Error
0
0
57
a,b = map(int, raw_input().split()); print(2*(a+b) a*b);
File "/tmp/tmpc7z5cuow/tmp4e0x_xae.py", line 3 print(2*(a+b) a*b); ^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s905031048
p02389
u613805578
1452047358
Python
Python
py
Runtime Error
0
0
59
a = input() b = input() return a * b return 2 * a + 2 * b
File "/tmp/tmpiyyk0epn/tmpbpxf13we.py", line 3 return a * b ^^^^^^^^^^^^ SyntaxError: 'return' outside function
s034798033
p02389
u682357930
1452047360
Python
Python3
py
Runtime Error
0
0
55
a,b = map(int, raw_input().split()); print2*(a+b) a*b;
File "/tmp/tmpsm5f95em/tmpjtfb3imy.py", line 3 print2*(a+b) a*b; ^ SyntaxError: invalid syntax
s449512935
p02389
u393769849
1452047374
Python
Python
py
Runtime Error
0
0
55
a = input() b = input() print a * b print a * 2 + b * 2
File "/tmp/tmp9pw7qc4n/tmpi44isijq.py", line 3 print a * b ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s145169995
p02389
u613805578
1452047378
Python
Python
py
Runtime Error
0
0
59
a = input() b = input() return a * b + " " + 2 * a + 2 * b
File "/tmp/tmpvvsoip78/tmp4iv_bj51.py", line 3 return a * b + " " + 2 * a + 2 * b ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: 'return' outside function
s829128958
p02389
u613805578
1452047394
Python
Python
py
Runtime Error
0
0
58
a = input() b = input() print a * b + " " + 2 * a + 2 * b
File "/tmp/tmpi6rzol44/tmproadoy1g.py", line 3 print a * b + " " + 2 * a + 2 * b ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s238701087
p02389
u393769849
1452047415
Python
Python
py
Runtime Error
0
0
46
a b = input() print a * b print a * 2 + b * 2
File "/tmp/tmpuf0vat65/tmpfla3uyli.py", line 1 a b = input() ^ SyntaxError: invalid syntax
s612333955
p02389
u613805578
1452047416
Python
Python
py
Runtime Error
0
0
63
a = input() b = input() return (a * b) + " " + (2 * a + 2 * b)
File "/tmp/tmp9a41b38t/tmp00pzhu8t.py", line 3 return (a * b) + " " + (2 * a + 2 * b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: 'return' outside function
s442428481
p02389
u038005340
1452047416
Python
Python
py
Runtime Error
0
0
42
a = input() b = input() print a*b 2*(a+b)
File "/tmp/tmpjpkvu2mx/tmp_dgr9umh.py", line 4 print a*b 2*(a+b) ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s306767684
p02389
u682357930
1452047440
Python
Python3
py
Runtime Error
0
0
57
a,b = map(int, raw_input().split()); print"2*(a+b) a*b";
File "/tmp/tmpk3axumh6/tmpxmyr8e4_.py", line 3 print"2*(a+b) a*b"; ^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s671567695
p02389
u663227983
1452047450
Python
Python
py
Runtime Error
0
0
48
a = input() b = input() print a*b +' ' + 2*(a+b)
File "/tmp/tmp5_74jequ/tmp5_pokiqh.py", line 3 print a*b +' ' + 2*(a+b) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s742918917
p02389
u038005340
1452047460
Python
Python
py
Runtime Error
0
0
54
a = input() b = input() print a * b ' ' 2 * ( a + b )
File "/tmp/tmpwktjkn47/tmpb8uykdij.py", line 4 print a * b ' ' 2 * ( a + b ) ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s795936469
p02389
u663227983
1452047466
Python
Python
py
Runtime Error
0
0
48
a = input() b = input() print a*b +' ' + 2*(a+b)
File "/tmp/tmpmgyxk61n/tmpzuga_vx_.py", line 3 print a*b +' ' + 2*(a+b) ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s034359948
p02389
u682357930
1452047473
Python
Python3
py
Runtime Error
0
0
60
a,b = map(int, raw_input().split()); print"2*(a+b) "+"a*b";
File "/tmp/tmp7i21agqj/tmptl3ytxkp.py", line 3 print"2*(a+b) "+"a*b"; ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s697255165
p02389
u663227983
1452047481
Python
Python
py
Runtime Error
0
0
47
a = input() b = input() print a*b +' '+ 2*(a+b)
File "/tmp/tmpkjrnjl8o/tmphunuravx.py", line 3 print a*b +' '+ 2*(a+b) ^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s673814576
p02389
u682357930
1452047490
Python
Python3
py
Runtime Error
0
0
56
a,b = map(int, raw_input().split()); print 2*(a+b) a*b;
File "/tmp/tmpzugc5ul7/tmpq8yd18ji.py", line 3 print 2*(a+b) a*b; ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s187999479
p02389
u613805578
1452047491
Python
Python
py
Runtime Error
0
0
62
a = input() b = input() return (a * b) + "" + (2 * a + 2 * b)
File "/tmp/tmp0bxe19x2/tmphqdj7snb.py", line 3 return (a * b) + "" + (2 * a + 2 * b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: 'return' outside function
s510034484
p02389
u038005340
1452047515
Python
Python
py
Runtime Error
0
0
58
a = input() b = input() print a * b + ' ' + 2 * ( a + b )
File "/tmp/tmp3vyltjl_/tmpk55qqp8j.py", line 4 print a * b + ' ' + 2 * ( a + b ) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s341111871
p02389
u682357930
1452047550
Python
Python3
py
Runtime Error
0
0
58
a,b = map(int, raw_input().split()); print 2*(a+b) , a*b;
File "/tmp/tmp_e8rfe0a/tmpo1806kik.py", line 3 print 2*(a+b) , a*b; ^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s981583839
p02389
u682357930
1452047604
Python
Python3
py
Runtime Error
0
0
57
a,b = map(int, raw_input().split()); print 2*(a+b), a*b;
File "/tmp/tmpwwuzo3to/tmpm0x0mhbd.py", line 3 print 2*(a+b), a*b; ^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s239318877
p02389
u682357930
1452047616
Python
Python3
py
Runtime Error
0
0
59
a,b = map(int, raw_input().split()); print (2*(a+b), a*b);
Traceback (most recent call last): File "/tmp/tmp0omxo02e/tmp7dk6kbfn.py", line 1, in <module> a,b = map(int, raw_input().split()); ^^^^^^^^^ NameError: name 'raw_input' is not defined
s431649445
p02389
u038005340
1452047627
Python
Python
py
Runtime Error
0
0
72
a = input() b = input() print a * b , print ' ' , print 2 * ( a + b )
File "/tmp/tmpxk14_8c2/tmpw4q9b8aq.py", line 4 print a * b , ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s207746357
p02389
u682357930
1452047669
Python
Python3
py
Runtime Error
0
0
66
a,b = map(int, raw_input().split()); print "2*(a+b)", print "a*b"
File "/tmp/tmpvx8_71m4/tmpa9pn9vms.py", line 3 print "2*(a+b)", ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s210918245
p02389
u663227983
1452047670
Python
Python
py
Runtime Error
0
0
48
a[1] = input() print a[0]*a[1]+' '+2*(a[0]+a[1])
File "/tmp/tmpameam1s1/tmp7f7eu6ml.py", line 2 print a[0]*a[1]+' '+2*(a[0]+a[1]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s249623258
p02389
u038243492
1452047709
Python
Python
py
Runtime Error
0
0
17
s = a * b print s
File "/tmp/tmp4z7xdi5m/tmpeejz88sl.py", line 2 print s ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s678381376
p02389
u682357930
1452047737
Python
Python3
py
Runtime Error
0
0
67
a,b = map(int, raw_input().split()); print '%d %d' %(2*(a+b), a*b)
File "/tmp/tmpk59ko994/tmpmuqa1cer.py", line 3 print '%d %d' %(2*(a+b), a*b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s432777666
p02389
u682357930
1452047767
Python
Python3
py
Runtime Error
0
0
69
a, b = map(int, raw_input().split()); print '%d %d' % (2*(a+b), a*b)
File "/tmp/tmpnj5kil8p/tmpf0mumqz2.py", line 3 print '%d %d' % (2*(a+b), a*b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s784745914
p02389
u824204304
1452047776
Python
Python
py
Runtime Error
0
0
85
a = raw_input() b = raw_input() a = int(a) b = int(b) print a * b print a + a + b + b
File "/tmp/tmpdysb7nqk/tmpzb2zdjok.py", line 5 print a * b ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s132636779
p02389
u038005340
1452047794
Python
Python
py
Runtime Error
0
0
58
a = input() b = input() print a * b , ' ' , 2 * ( a + b )
File "/tmp/tmp0fvf299x/tmpudq4tn6t.py", line 4 print a * b , ' ' , 2 * ( a + b ) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s281780670
p02389
u824204304
1452047800
Python
Python
py
Runtime Error
0
0
87
a = raw_input() b = raw_input() a = int(a) b = int(b) print a * b print a + a + b + b
File "/tmp/tmpe_pbsndx/tmpfof7hx8n.py", line 5 print a * b print a + a + b + b ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s393818816
p02389
u563876281
1452047821
Python
Python
py
Runtime Error
0
0
19
a=input() b=input()
Traceback (most recent call last): File "/tmp/tmpk7xpho29/tmpiz5qe76a.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s890907198
p02389
u970436839
1452047885
Python
Python
py
Runtime Error
0
0
54
a, b = map(int, raw_input().split()) print a*b 2*a+2*b
File "/tmp/tmp9yoelwgd/tmpc3xty_nc.py", line 2 print a*b 2*a+2*b ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s647153285
p02389
u393769849
1452047886
Python
Python
py
Runtime Error
0
0
48
def suuji(a,b): print a * b print a * 2 + b * 2
File "/tmp/tmp361o8rr6/tmpv_4yk1qa.py", line 3 print a * b ^ IndentationError: expected an indented block after function definition on line 1
s350702400
p02389
u613805578
1452047901
Python
Python
py
Runtime Error
0
0
50
a = input() b = input() print a * b, 2 * a + 2 * b
File "/tmp/tmpmm2n1_s_/tmp1cilsme4.py", line 3 print a * b, 2 * a + 2 * b ^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s651358192
p02389
u038005340
1452047904
Python
Python
py
Runtime Error
0
0
77
a = input() b = input() ans1 = a * b ans2 = 2 * ( a + b ) print ans1' 'ans2
File "/tmp/tmpwzrdghqh/tmp_z6ve8yl.py", line 7 print ans1' 'ans2 ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s182415492
p02389
u038005340
1452047911
Python
Python
py
Runtime Error
0
0
75
a = input() b = input() ans1 = a * b ans2 = 2 * ( a + b ) print ans1 ans2
File "/tmp/tmp8kv5ak7d/tmpkkq3el5_.py", line 7 print ans1 ans2 ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s835990046
p02389
u824204304
1452047912
Python
Python
py
Runtime Error
0
0
85
a = raw_input() b = raw_input() a = int(a) b = int(b) print a * b print a + a + b + b
File "/tmp/tmpj465r62a/tmpdjsp5zle.py", line 3 a = int(a) b = int(b) ^ SyntaxError: invalid syntax
s192577036
p02389
u613805578
1452047917
Python
Python
py
Runtime Error
0
0
51
a = input(), b = input() print a * b, 2 * a + 2 * b
File "/tmp/tmp79m1ceos/tmp62r1n4zr.py", line 1 a = input(), b = input() ^^^^^^^^^^^ SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
s573237692
p02389
u038243492
1452047919
Python
Python
py
Runtime Error
0
0
71
a = raw_input() b = raw_input() a = int(a) b = int(b) s = a * b print s
File "/tmp/tmpz5ublrwj/tmp6ubdiio5.py", line 6 print s ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s742154068
p02389
u177808190
1452047920
Python
Python
py
Runtime Error
0
0
82
x = raw_input() y = raw_input() x = int(x) y = int(y) print x * y 2 * x + 2 * y
File "/tmp/tmp53v45nix/tmp1fq5x0bj.py", line 7 print x * y 2 * x + 2 * y ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s519279287
p02389
u920118302
1452047925
Python
Python
py
Runtime Error
0
0
58
a = int(input()) b = int(input()) print(a * b, 2 * (a+b))
Traceback (most recent call last): File "/tmp/tmppzrmu76x/tmph94wz94z.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s839656625
p02389
u038005340
1452047925
Python
Python
py
Runtime Error
0
0
77
a = input() b = input() ans1 = a * b ans2 = 2 * ( a + b ) print (ans1 ans2)
File "/tmp/tmp2s6p_xl7/tmptiyztf05.py", line 7 print (ans1 ans2) ^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s017797878
p02389
u069446126
1452047949
Python
Python
py
Runtime Error
0
0
106
a = raw_input() b = raw_input() a = int(a) b = int(b) area = a * b around = a*2 + b*2 print area around
File "/tmp/tmpe5uksvx0/tmpk6lgobcm.py", line 9 print area around ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s628173672
p02389
u038005340
1452047995
Python
Python
py
Runtime Error
0
0
83
a = input() b = input() ans1 = a * b ans2 = 2 * ( a + b ) print ans1 + ' ' + ans2
File "/tmp/tmpj79x5n_y/tmpzncjkkbj.py", line 7 print ans1 + ' ' + ans2 ^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s521241911
p02389
u038005340
1452048001
Python
Python
py
Runtime Error
0
0
81
a = input() b = input() ans1 = a * b ans2 = 2 * ( a + b ) print ans1 ' ' ans2
File "/tmp/tmp7kvevsly/tmprlu8wlib.py", line 7 print ans1 ' ' ans2 ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s613523841
p02389
u630265299
1452048045
Python
Python
py
Runtime Error
0
0
61
a = input() b = input() s = a * b l = 2 * a + 2 * b print s l
File "/tmp/tmpsyc_dlq3/tmpkiqthyrd.py", line 5 print s l ^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s512237583
p02389
u456885296
1452048048
Python
Python
py
Runtime Error
0
0
44
a=input() b=input() print a*b print 2*a+2*b
File "/tmp/tmpwinj960c/tmpfa8u5843.py", line 4 print a*b ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s161197745
p02389
u393769849
1452048069
Python
Python
py
Runtime Error
0
0
50
def suuji(a,b): print a * b , print a * 2 + b * 2
File "/tmp/tmpz_daplcw/tmp5ieq28ur.py", line 3 print a * b , ^ IndentationError: expected an indented block after function definition on line 1