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
s037344432
p02389
u922695161
1491822824
Python
Python3
py
Runtime Error
0
0
56
import sys x, y = sys.stdin() z=x*y a=(x+y)*2 print(z,a)
Traceback (most recent call last): File "/tmp/tmp_37d1q9a/tmp17s3dwm_.py", line 2, in <module> x, y = sys.stdin() ^^^^^^^^^^^ TypeError: '_io.TextIOWrapper' object is not callable
s868034905
p02389
u619570677
1492093585
Python
Python3
py
Runtime Error
0
0
100
a = input() b = input() area = int(a) * int(b) length = 2 * int(a) + 2 * int(b) print(area length)
File "/tmp/tmpcwsdppfx/tmp1af1d9b7.py", line 7 print(area length) ^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s698836346
p02389
u619570677
1492093661
Python
Python3
py
Runtime Error
0
0
102
a = input() b = input() area = int(a) * int(b) length = 2 * int(a) + 2 * int(b) print(area length)
File "/tmp/tmpjmyiq28v/tmptxyjefgy.py", line 7 print(area length) ^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s533868905
p02389
u619570677
1492178829
Python
Python3
py
Runtime Error
0
0
89
a = int(input()) b = int(input()) area = a * b length = 2* a + 2 * b print(area length)
File "/tmp/tmph16blv4i/tmployw_bbv.py", line 7 print(area length) ^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s693150125
p02389
u619570677
1492178990
Python
Python3
py
Runtime Error
0
0
90
a,b = list(map(int, input().split())) area = a*b length = 2 * (a + b) print(area length)
File "/tmp/tmp69c36g1j/tmpkhtz4jzz.py", line 6 print(area length) ^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s712840596
p02389
u619570677
1492179346
Python
Python3
py
Runtime Error
0
0
106
a.b = list(map(int,input().split())) area = a * b length = 2 * (a + b) print(area,end=" ") print(length)
Traceback (most recent call last): File "/tmp/tmpze7r4kx4/tmpzt3cmgx5.py", line 1, in <module> a.b = list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s968950250
p02389
u730249105
1492221323
Python
Python3
py
Runtime Error
0
0
81
ab=input().split(" ") a=ab[1] b=ab[2] s=a*b l=(a+b)*2 print(str(s)+" "+str(l))
Traceback (most recent call last): File "/tmp/tmp_5no47_g/tmp635lgcfs.py", line 1, in <module> ab=input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s860696508
p02389
u956740383
1492227860
Python
Python3
py
Runtime Error
0
0
70
a=input.split() print(int(a[0])*int(a[1])+" "+2*(int(a[0])+int(a[1])))
Traceback (most recent call last): File "/tmp/tmpxngflvvr/tmp1zq97d9f.py", line 1, in <module> a=input.split() ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s437914182
p02389
u956740383
1492228072
Python
Python3
py
Runtime Error
0
0
80
a=input().split() b=int(a[0])*int(a[1]) c=(int(a[0])+int(a[1]))*2 print(b+" "+c)
Traceback (most recent call last): File "/tmp/tmpg9009rzj/tmprafnzy1_.py", line 1, in <module> a=input().split() ^^^^^^^ EOFError: EOF when reading a line
s987541653
p02389
u111398151
1492441522
Python
Python3
py
Runtime Error
0
0
52
a , b = map(int(), input().split) print(a*b a*2+b*2)
File "/tmp/tmp5i3u2wdt/tmppqe9b9mu.py", line 2 print(a*b a*2+b*2) ^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s086177351
p02389
u111398151
1492441597
Python
Python3
py
Runtime Error
0
0
48
a,b=map(int, input(),split) print(a*b , a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpr2ik_9fa/tmpp6c5_k5a.py", line 1, in <module> a,b=map(int, input(),split) ^^^^^^^ EOFError: EOF when reading a line
s321840596
p02389
u628279257
1492592504
Python
Python3
py
Runtime Error
0
0
50
a,b=int(split(input())) x=a:b y=2*a+2*b print(x,y)
File "/tmp/tmpjjahezj8/tmpicsb_otz.py", line 2 x=a:b ^ SyntaxError: invalid syntax
s722282999
p02389
u628279257
1492592561
Python
Python3
py
Runtime Error
0
0
50
a,b=int(split(input())) x=a+b y=2*a+2*b print(x,y)
Traceback (most recent call last): File "/tmp/tmpo9ipykhw/tmp18f0olhm.py", line 1, in <module> a,b=int(split(input())) ^^^^^ NameError: name 'split' is not defined
s270596185
p02389
u628279257
1492592606
Python
Python3
py
Runtime Error
0
0
62
s=int(split(input())) a=s[0] b=s[1] x=a+b y=2*a+2*b print(x,y)
Traceback (most recent call last): File "/tmp/tmphej5q4ht/tmpqeuvhwhz.py", line 1, in <module> s=int(split(input())) ^^^^^ NameError: name 'split' is not defined
s544607108
p02389
u628279257
1492592624
Python
Python3
py
Runtime Error
0
0
62
s=int(split(input())) a=s[0] b=s[1] x=a*b y=2*a+2*b print(x,y)
Traceback (most recent call last): File "/tmp/tmphvw3zlwt/tmpfu6rs7oq.py", line 1, in <module> s=int(split(input())) ^^^^^ NameError: name 'split' is not defined
s353670692
p02389
u628279257
1492592665
Python
Python3
py
Runtime Error
0
0
67
s=split(input()) a=int(s[0]) b=int(s[1]) x=a*b y=2*a+2*b print(x,y)
Traceback (most recent call last): File "/tmp/tmpzlmpgtdm/tmpjl8firdu.py", line 1, in <module> s=split(input()) ^^^^^ NameError: name 'split' is not defined
s188447341
p02389
u628279257
1492592766
Python
Python3
py
Runtime Error
0
0
67
s=split(input()) a=int(s[0]) b=int(s[1]) x=a*b y=2*(a+b) print(x,y)
Traceback (most recent call last): File "/tmp/tmpuo78xviq/tmpvhjuqomk.py", line 1, in <module> s=split(input()) ^^^^^ NameError: name 'split' is not defined
s849669516
p02389
u556326323
1492650835
Python
Python3
py
Runtime Error
0
0
65
a,b = map(int, input().split()) print(str(a*b) + ' ' + (a+b) * 2)
Traceback (most recent call last): File "/tmp/tmpg6clzfjq/tmpl8xbzef_.py", line 1, in <module> a,b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s100383055
p02389
u217701374
1492879129
Python
Python3
py
Runtime Error
0
0
54
a,b = map(int,input().split()) print(a*b (a*2)+(b*2))
Traceback (most recent call last): File "/tmp/tmpaj7n3zoe/tmps58j1__1.py", line 1, in <module> a,b = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s080765302
p02389
u772010071
1493110974
Python
Python3
py
Runtime Error
0
0
45
x, y = input() print(x * y + " " + 2*x + 2*y)
Traceback (most recent call last): File "/tmp/tmp4z1vus4t/tmpusteyh76.py", line 1, in <module> x, y = input() ^^^^^^^ EOFError: EOF when reading a line
s952409895
p02389
u772010071
1493111141
Python
Python3
py
Runtime Error
0
0
51
a, b = list(map(int, split.())) print(a*b, 2*(a+b))
File "/tmp/tmp9bb09c06/tmpfacw7818.py", line 1 a, b = list(map(int, split.())) ^ SyntaxError: invalid syntax
s912916829
p02389
u419755872
1493473035
Python
Python
py
Runtime Error
0
0
99
#coding:UTF-8 s = input().split() a = int(s[0]) b = int(s[1]) cir = a+b area = a*b print (cir,area)
Traceback (most recent call last): File "/tmp/tmp4p0mp08u/tmpwn46w649.py", line 2, in <module> s = input().split() ^^^^^^^ EOFError: EOF when reading a line
s030925853
p02389
u419755872
1493473133
Python
Python
py
Runtime Error
0
0
99
#coding:UTF-8 s = input().split() a = int(s[0]) b = int(s[1]) cir = a+b area = a*b print (cir,area)
Traceback (most recent call last): File "/tmp/tmpyrtdbsnf/tmpb01kar_h.py", line 2, in <module> s = input().split() ^^^^^^^ EOFError: EOF when reading a line
s233025850
p02389
u419755872
1493473234
Python
Python
py
Runtime Error
0
0
107
#coding:UTF-8 s = input().split() cir = 2*(int(s[0])+int(s[1])) area = int(s[0])*int(s[1]) print (area,cir)
Traceback (most recent call last): File "/tmp/tmp1tqgqx6y/tmpakqutn_l.py", line 2, in <module> s = input().split() ^^^^^^^ EOFError: EOF when reading a line
s429962924
p02389
u156182935
1493619651
Python
Python3
py
Runtime Error
0
0
70
i = int(input()).split(" ") print((i[0]*i[1]) + " " + (i[0]*2+i[1]*2))
Traceback (most recent call last): File "/tmp/tmpzjy3cevl/tmpjfsve6q5.py", line 1, in <module> i = int(input()).split(" ") ^^^^^^^ EOFError: EOF when reading a line
s811462678
p02389
u156182935
1493619742
Python
Python3
py
Runtime Error
0
0
70
i = int(input()).split(" ") print((i[0]*i[1]) + " " + (i[0]*2+i[1]*2))
Traceback (most recent call last): File "/tmp/tmpxrpdiv_h/tmpf8uxx3or.py", line 1, in <module> i = int(input()).split(" ") ^^^^^^^ EOFError: EOF when reading a line
s405146802
p02389
u213265973
1493711119
Python
Python3
py
Runtime Error
0
0
40
a,b = input( , ) print(2*a + 2* b, a*b)
File "/tmp/tmpw3sz1ell/tmpezzt6gor.py", line 1 a,b = input( , ) ^ SyntaxError: invalid syntax
s077464551
p02389
u213265973
1493711199
Python
Python3
py
Runtime Error
0
0
36
a,b = input( , ) print(2*a+2*b,a*b)
File "/tmp/tmpwah48d7_/tmppcwrrbo8.py", line 1 a,b = input( , ) ^ SyntaxError: invalid syntax
s522409509
p02389
u286033857
1493899160
Python
Python3
py
Runtime Error
0
0
74
a = int(input()) b = int(input()) print(str(a*b) + " " + str((a + b) * 2))
Traceback (most recent call last): File "/tmp/tmp2r8ar5vr/tmpwibkztbe.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s399660104
p02389
u213265973
1493957958
Python
Python3
py
Runtime Error
0
0
30
def f(a b) return a*b 2*a+ 2*b
File "/tmp/tmptxx9nkc0/tmphxkexr3v.py", line 1 def f(a b) ^ SyntaxError: invalid syntax
s962752283
p02389
u213265973
1493958164
Python
Python3
py
Runtime Error
0
0
32
a b = input() print(a*b 2*(a+b))
File "/tmp/tmpskbcr5kl/tmp3hatp6gx.py", line 1 a b = input() ^ SyntaxError: invalid syntax
s756028296
p02389
u213265973
1493958276
Python
Python3
py
Runtime Error
0
0
34
a, b = input(,) print(a*b,2*(a+b))
File "/tmp/tmpj8w5hgjj/tmphqv0d0uw.py", line 1 a, b = input(,) ^ SyntaxError: invalid syntax
s324528488
p02389
u648117624
1493995077
Python
Python
py
Runtime Error
0
0
63
a = input() b = input() s = a * b l = (a + b) *2 print (s, l)
Traceback (most recent call last): File "/tmp/tmp92givqqr/tmp71xiebih.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s814074388
p02389
u213265973
1494026934
Python
Python3
py
Runtime Error
0
0
38
a,b = int(input()) print(a*b, 2*(a+b))
Traceback (most recent call last): File "/tmp/tmpxafczer1/tmpqcq_8ir2.py", line 1, in <module> a,b = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s606451536
p02389
u213265973
1494027304
Python
Python3
py
Runtime Error
0
0
80
list = (input(.split(" ")) a = int(list[0]) b = int(list[1]) print(a*b, 2*(a+b))
File "/tmp/tmp6o2r7wkr/tmprbnthndj.py", line 1 list = (input(.split(" ")) ^ SyntaxError: invalid syntax
s936777643
p02389
u003181964
1494218665
Python
Python3
py
Runtime Error
0
0
121
import math data = input() data1 = input() data = int(data) data = int(data1) print (data * data1," ",data*2 + data1*2)
Traceback (most recent call last): File "/tmp/tmp7uzkkn__/tmp4il6nk87.py", line 3, in <module> data = input() ^^^^^^^ EOFError: EOF when reading a line
s208753105
p02389
u003181964
1494219283
Python
Python3
py
Runtime Error
0
0
122
import math data = input() data1 = input() data = int(data) data1 = int(data1) print (data * data1," ",data*2 + data1*2)
Traceback (most recent call last): File "/tmp/tmpsvuydub7/tmpfg_6qmgb.py", line 3, in <module> data = input() ^^^^^^^ EOFError: EOF when reading a line
s099006812
p02389
u576398884
1494241846
Python
Python3
py
Runtime Error
0
0
61
ab = input().split() print ab[0] * ab[1], (ab[0] + ab[1]) * 2
File "/tmp/tmpc__hqnxg/tmpl1ydc18m.py", line 2 print ab[0] * ab[1], (ab[0] + ab[1]) * 2 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s015766251
p02389
u576398884
1494241933
Python
Python3
py
Runtime Error
0
0
71
ab = input().split() c = ab[0] * ab[1] d = ab[0]*2 + ab[1]*2 print c, d
File "/tmp/tmpkfv7s437/tmpofp47fch.py", line 4 print c, d ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s866901180
p02389
u576398884
1494241971
Python
Python3
py
Runtime Error
0
0
75
ab = raw_input().split() c = ab[0] * ab[1] d = ab[0]*2 + ab[1]*2 print c, d
File "/tmp/tmp3dgo9u9b/tmpjffxmy7f.py", line 4 print c, d ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s860526357
p02389
u576398884
1494242166
Python
Python3
py
Runtime Error
0
0
85
ab = map(int, raw_input().split()) c = ab[0] * ab[1] d = ab[0]*2 + ab[1]*2 print c, d
File "/tmp/tmpem8n5krw/tmp5sjbwq95.py", line 4 print c, d ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s252644396
p02389
u576398884
1494242206
Python
Python3
py
Runtime Error
0
0
88
ab = raw_input().split() map(int, ab) c = ab[0] * ab[1] d = ab[0]*2 + ab[1]*2 print c, d
File "/tmp/tmp09wap6nu/tmp72xjb1gv.py", line 5 print c, d ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s645236351
p02389
u576398884
1494242216
Python
Python3
py
Runtime Error
0
0
92
ab = raw_input().split() ab = map(int,ab) c = ab[0] * ab[1] d = ab[0]*2 + ab[1]*2 print c, d
File "/tmp/tmpfda0zw0g/tmpdg95zxo3.py", line 5 print c, d ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s936577625
p02389
u576398884
1494244105
Python
Python3
py
Runtime Error
0
0
85
ab = map(int, raw_input().split()) c = ab[0] * ab[1] d = ab[0]*2 + ab[1]*2 print c, d
File "/tmp/tmpe9159qgs/tmp_srmxoe6.py", line 4 print c, d ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s949831005
p02389
u688488162
1494390533
Python
Python
py
Runtime Error
0
0
61
a = input() b = input() print('{0} {1}'.format(a*b,2*(a+b)))
Traceback (most recent call last): File "/tmp/tmpzo461fxa/tmpghc6oml7.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s401069182
p02389
u884012707
1494997657
Python
Python3
py
Runtime Error
0
0
44
a,b=map(int, raw_input().split()) print(a*b)
Traceback (most recent call last): File "/tmp/tmppbja8v00/tmpzsqtkey7.py", line 1, in <module> a,b=map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s358143616
p02389
u686209982
1495083382
Python
Python3
py
Runtime Error
0
0
91
x = input() x = x.split() x[0] = int(x[0]) x[1] = int(x[1]) print(x[0]*x[1],x[0]*2+x[1]*2)
File "/tmp/tmpebptqboj/tmpriizp9u8.py", line 5 print(x[0]*x[1],x[0]*2+x[1]*2) IndentationError: unexpected indent
s351915342
p02389
u580508010
1495200463
Python
Python3
py
Runtime Error
0
0
97
b=input() e= b.find(" ") c= int(b[:e-1]) d= int(b[e+1:]) f= c*d g= c+c+d+d print ( f + " " + g )
Traceback (most recent call last): File "/tmp/tmp_1gc5fpo/tmp0ov6eauc.py", line 1, in <module> b=input() ^^^^^^^ EOFError: EOF when reading a line
s453179255
p02389
u603049633
1495499985
Python
Python3
py
Runtime Error
0
0
75
x,y = map(int, input()split()) S = X * y L = 2 * (x + y) print(S + " " + L)
File "/tmp/tmpaxblva52/tmp4a9z282d.py", line 1 x,y = map(int, input()split()) ^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s586790460
p02389
u603049633
1495500763
Python
Python3
py
Runtime Error
0
0
78
x,y = map(int, input().split()) S = X * y L = 2 * (x + y) print(S + " " + L)
Traceback (most recent call last): File "/tmp/tmppult2_2u/tmpbavwt5ua.py", line 1, in <module> x,y = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s518706958
p02389
u714141025
1495671421
Python
Python3
py
Runtime Error
0
0
42
a=int(input().split(" ")) print(a[0]*a[1])
Traceback (most recent call last): File "/tmp/tmp4x4zjea5/tmpawbf_cvp.py", line 1, in <module> a=int(input().split(" ")) ^^^^^^^ EOFError: EOF when reading a line
s330241254
p02389
u922489088
1495789275
Python
Python3
py
Runtime Error
0
0
79
import sys a,b = sys.stdin.readline().rstrip().strip(' ') print(int(a)*int(b))
Traceback (most recent call last): File "/tmp/tmpt73yiiy6/tmp42zl6wn1.py", line 3, in <module> a,b = sys.stdin.readline().rstrip().strip(' ') ^^^ ValueError: not enough values to unpack (expected 2, got 0)
s948189450
p02389
u922489088
1495789573
Python
Python3
py
Runtime Error
0
0
103
import sys a,b = map(int, sys.stdin.readline().rstrip().split(' ')) print("{} {}".format(a*b, (a+b)*2)
File "/tmp/tmpg7hxgbfx/tmpysjqq23z.py", line 4 print("{} {}".format(a*b, (a+b)*2) ^ SyntaxError: '(' was never closed
s823788248
p02389
u999594662
1496063423
Python
Python3
py
Runtime Error
0
0
66
a=int(input()) b=int(input()) area=a*b shu=2(a+b) print(area, shu)
/tmp/tmpe_q2_jq2/tmpxws6mufq.py:4: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? shu=2(a+b) Traceback (most recent call last): File "/tmp/tmpe_q2_jq2/tmpxws6mufq.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s953658570
p02389
u167404994
1496141693
Python
Python3
py
Runtime Error
0
0
46
a = int(input()) b = int(input()) print(a * b)
Traceback (most recent call last): File "/tmp/tmpx503u276/tmp2r60mtzi.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s839982640
p02389
u025362139
1496651294
Python
Python
py
Runtime Error
0
0
41
l = raw_input().split() print l[0] * l[1]
File "/tmp/tmp34jin77k/tmpo2iolkk1.py", line 2 print l[0] * l[1] ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s482867918
p02389
u025362139
1496651346
Python
Python
py
Runtime Error
0
0
39
l = raw_input().split() print l[0]*l[1]
File "/tmp/tmp976_r4wm/tmplhnu1a37.py", line 2 print l[0]*l[1] ^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s921320531
p02389
u025362139
1496651478
Python
Python
py
Runtime Error
0
0
54
l = raw_input().split() print l[0]*l[1], 2*l[0]+2*l[1]
File "/tmp/tmpnrrjde8a/tmp6sp2h7ow.py", line 2 print l[0]*l[1], 2*l[0]+2*l[1] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s139028106
p02389
u216229195
1496756289
Python
Python3
py
Runtime Error
0
0
66
list = input().split() print(list[0]*list[1], list[0]*2+list[1]*2)
Traceback (most recent call last): File "/tmp/tmpvk6yo4w9/tmpukxbgc37.py", line 1, in <module> list = input().split() ^^^^^^^ EOFError: EOF when reading a line
s532671751
p02389
u675844759
1496796347
Python
Python3
py
Runtime Error
0
0
108
a, b = [int(i) for i in input().split()] area = a * b perimeter = 2 * (a + b) print(area + " " + perimeter)
Traceback (most recent call last): File "/tmp/tmpub4xrckx/tmp1r1sxrw2.py", line 1, in <module> a, b = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s375428041
p02389
u675844759
1496796370
Python
Python3
py
Runtime Error
0
0
108
a, b = [int(i) for i in input().split()] area = a * b perimeter = 2 * (a + b) print(area & " " & perimeter)
Traceback (most recent call last): File "/tmp/tmpet0og0o2/tmp3kgu09bi.py", line 1, in <module> a, b = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s809546669
p02389
u100370736
1496806102
Python
Python
py
Runtime Error
0
0
47
a=input(); b=input(); print a*b; print a*2+b*2;
File "/tmp/tmpb5exarl7/tmpi1csa0x_.py", line 2 print a*b; print a*2+b*2; ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s965792225
p02389
u100370736
1496806145
Python
Python
py
Runtime Error
0
0
43
a=input() b=input() print a*b print a*2+b*2
File "/tmp/tmpvu7f1746/tmpudmwzufz.py", line 3 print a*b ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s036902284
p02389
u239524997
1497159294
Python
Python
py
Runtime Error
0
0
18
print(a*b,2*a+2*b)
Traceback (most recent call last): File "/tmp/tmprinn54g1/tmp92vr3w2l.py", line 1, in <module> print(a*b,2*a+2*b) ^ NameError: name 'a' is not defined
s443574071
p02389
u239524997
1497160436
Python
Python
py
Runtime Error
0
0
56
a=0 b=0 a=int(input()) b=int(input()) print(a*b,2*(a+b))
Traceback (most recent call last): File "/tmp/tmpn5yuwid1/tmp6qnlafva.py", line 3, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s678699121
p02389
u239524997
1497160710
Python
Python
py
Runtime Error
0
0
65
a=0 b=0 list = input() a = list[0] b = list[2] print(a*b,2*(a+b))
Traceback (most recent call last): File "/tmp/tmptqozqwx1/tmpspgtcdk9.py", line 3, in <module> list = input() ^^^^^^^ EOFError: EOF when reading a line
s056291829
p02389
u239524997
1497160807
Python
Python
py
Runtime Error
0
0
75
a=0 b=0 list = input() a = int(list[0]) b = int(list[2]) print(a*b,2*(a+b))
Traceback (most recent call last): File "/tmp/tmpms5i9v__/tmp9uz1c67p.py", line 3, in <module> list = input() ^^^^^^^ EOFError: EOF when reading a line
s124555496
p02389
u239524997
1497162817
Python
Python
py
Runtime Error
0
0
42
a = input() b = input() print(a*b,2*(a+b))
Traceback (most recent call last): File "/tmp/tmp1awaqv5c/tmpuod3iro9.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s029109256
p02389
u580737984
1497506171
Python
Python3
py
Runtime Error
0
0
198
i = j = 0 n = '' m = '' line = input() while line[i] != ' ': n = n + line[i] i += 1 while i < len(line): m = m + line[i] i += 1 n = int(n) m = int(m) print(n*m 2*n+2*m)
File "/tmp/tmp0s5ovkup/tmp4e_yewdb.py", line 19 print(n*m 2*n+2*m) ^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s909354108
p02389
u658089986
1497506396
Python
Python3
py
Runtime Error
30
7656
57
x= input() a = int(x[0]) b = int(x[2]) print(a*b,a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpt1rx_gdo/tmplg_ryeuh.py", line 1, in <module> x= input() ^^^^^^^ EOFError: EOF when reading a line
s025796704
p02389
u721221949
1497506440
Python
Python3
py
Runtime Error
0
0
68
[a, b] = [int(input()) for _ in range(2)] print(a*b + " " + (a+b)*2)
Traceback (most recent call last): File "/tmp/tmppb6bv7_i/tmps2met1iv.py", line 1, in <module> [a, b] = [int(input()) for _ in range(2)] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/tmp/tmppb6bv7_i/tmps2met1iv.py", line 1, in <listcomp> [a, b] = [int(input()) for _ in range(2)] ^^^^^^^ EOFError: EOF when reading a line
s601693876
p02389
u658089986
1497506494
Python
Python3
py
Runtime Error
0
0
67
x= input() a = int(x[0]) b = int(x[2]) print(a*b)end print(a*2+b*2)
File "/tmp/tmp5sodp_ft/tmp88t1sm1o.py", line 4 print(a*b)end ^^^ SyntaxError: invalid syntax
s229663148
p02389
u721221949
1497506534
Python
Python3
py
Runtime Error
0
0
70
[a, b] = [int(input()) for _ in range(2)] print((a*b) + " " + (a+b)*2)
Traceback (most recent call last): File "/tmp/tmpu1ang4o3/tmpes7xf5g8.py", line 1, in <module> [a, b] = [int(input()) for _ in range(2)] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/tmp/tmpu1ang4o3/tmpes7xf5g8.py", line 1, in <listcomp> [a, b] = [int(input()) for _ in range(2)] ^^^^^^^ EOFError: EOF when reading a line
s361298096
p02389
u623827446
1497506626
Python
Python3
py
Runtime Error
0
0
69
str = input() a = str[0] b = str[2] print(a*b, end='') print((a+b)*2)
Traceback (most recent call last): File "/tmp/tmp4abzgwyc/tmp619i82ru.py", line 1, in <module> str = input() ^^^^^^^ EOFError: EOF when reading a line
s393995171
p02389
u658089986
1497506762
Python
Python3
py
Runtime Error
0
0
67
x= input() a = int(x[0]) b = int(x[1]) print(a*b)end print(a*2+b*2)
File "/tmp/tmp608y9xm1/tmp_gy4ei34.py", line 4 print(a*b)end ^^^ SyntaxError: invalid syntax
s351870274
p02389
u486972540
1497506767
Python
Python3
py
Runtime Error
0
0
70
a = int(input()) b = int(input()) print(a * b) print(a ** 2 + b ** 2)
Traceback (most recent call last): File "/tmp/tmp_kk4snah/tmpqy8f73ee.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s369439827
p02389
u569585396
1497506772
Python
Python3
py
Runtime Error
0
0
57
a = int(input()) b = int(input()) print('a' + ' ' + 'b')
Traceback (most recent call last): File "/tmp/tmp5y3kofix/tmpvne6l7to.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s277555549
p02389
u486972540
1497506847
Python
Python3
py
Runtime Error
0
0
55
a=int(input()) b=int(input()) print(a*b) print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmp52_psapa/tmpqz6mso8d.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s273752984
p02389
u721103753
1497506849
Python
Python3
py
Runtime Error
0
0
47
a = input() b = input() print(int(a) * int(b))
Traceback (most recent call last): File "/tmp/tmppab_k15b/tmpq8c1p5sz.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s288329945
p02389
u658089986
1497506901
Python
Python3
py
Runtime Error
0
0
72
x= input() a = int(x[0]) b = int(x[1]) print(a*b,end=' ') print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpcbxah913/tmpojweeq4s.py", line 1, in <module> x= input() ^^^^^^^ EOFError: EOF when reading a line
s965335147
p02389
u410114382
1497506917
Python
Python3
py
Runtime Error
0
0
56
a = int(input()) b = int(input()) print(a*b)and(2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpvl9wwnrf/tmp_ga48rbr.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s593127392
p02389
u478810373
1497506937
Python
Python3
py
Runtime Error
0
0
60
a = int(input()) b = int(input()) print(a*b) print((a+b)*2)
Traceback (most recent call last): File "/tmp/tmp1nf6xos3/tmpr10agk4i.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s726675979
p02389
u333596716
1497506940
Python
Python3
py
Runtime Error
0
0
61
a = int(input()) b = int(input()) print a*b print (a*2)+(b*2)
File "/tmp/tmpv52yj2qx/tmpwo4jf309.py", line 3 print a*b ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s163511809
p02389
u569585396
1497506945
Python
Python3
py
Runtime Error
0
0
45
(a, b) = int(input()) print("a" + " " + "b")
Traceback (most recent call last): File "/tmp/tmpn471n2ro/tmpsk03vmme.py", line 1, in <module> (a, b) = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s480706710
p02389
u410114382
1497506956
Python
Python3
py
Runtime Error
0
0
59
a = int(input()) b = int(input()) print(a*b) print(2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpggtl0082/tmp862lbyfd.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s991805265
p02389
u323082382
1497506960
Python
Python3
py
Runtime Error
0
0
94
a = int(input()) b = int(input()) mennseki = a*b mawari = (a*2)+(b*2) print(mennseki,mawari)
Traceback (most recent call last): File "/tmp/tmpfjj14w69/tmp57oxowck.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s961288837
p02389
u323082382
1497507001
Python
Python3
py
Runtime Error
0
0
94
a = int(input()) b = int(input()) mennseki = a*b mawari = (a*2)+(b*2) print(mennseki mawari)
File "/tmp/tmp84zl0k4w/tmp2vvmngjo.py", line 7 print(mennseki mawari) ^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s090521017
p02389
u721103753
1497507008
Python
Python3
py
Runtime Error
0
0
78
a = input() b = input() print(int(a) * int(b)) print((sum(int(a),int(b)) * 2)
File "/tmp/tmpyvy100p1/tmpqx0xl98j.py", line 5 print((sum(int(a),int(b)) * 2) ^ SyntaxError: '(' was never closed
s603175221
p02389
u721221949
1497507014
Python
Python3
py
Runtime Error
0
0
69
[a, b] = [int(_) for _ in input().split()] print(a*b + " " + (a+b)*2)
Traceback (most recent call last): File "/tmp/tmpu8zbnhr3/tmpqmjln8db.py", line 1, in <module> [a, b] = [int(_) for _ in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s256417663
p02389
u027278270
1497507063
Python
Python3
py
Runtime Error
0
0
60
a = int(input()) b = int(input()) c = a*b d = c+1 print(c,d)
Traceback (most recent call last): File "/tmp/tmpser4ugum/tmp03klth60.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s265781626
p02389
u363648401
1497507066
Python
Python3
py
Runtime Error
0
0
66
a =int(input()) b =int(input()) print (a*b) print ((a*2) + (b*2))
Traceback (most recent call last): File "/tmp/tmpky1gvsvd/tmpwuomslkb.py", line 1, in <module> a =int(input()) ^^^^^^^ EOFError: EOF when reading a line
s422910621
p02389
u169794024
1497507083
Python
Python3
py
Runtime Error
0
0
60
a=int(input()) b=int(input()) print((a*2)+(b*2)) print(a*b)
Traceback (most recent call last): File "/tmp/tmpfp33qnjz/tmp88aiwr2x.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s137317158
p02389
u323082382
1497507126
Python
Python3
py
Runtime Error
0
0
65
a,b = map(int,input().split()) c = a*b d = a*2 + b*2 print(c d)
File "/tmp/tmpajs77om8/tmp8k3eonoa.py", line 6 print(c d) ^ SyntaxError: invalid syntax
s616293119
p02389
u169794024
1497507152
Python
Python3
py
Runtime Error
0
0
43
a,b=int(input()) print(a*b) print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpwyoa4zo8/tmpvhl63945.py", line 1, in <module> a,b=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s179719336
p02389
u721103753
1497507158
Python
Python3
py
Runtime Error
0
0
78
a = input() b = input() print(int(a) * int(b)) print(int(a) * 2 + int(b) * 2)
Traceback (most recent call last): File "/tmp/tmpqsrqi5cb/tmpywflpkkf.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s658038686
p02389
u658089986
1497507185
Python
Python3
py
Runtime Error
0
0
76
x=input() x = x.split() a = x[0] b = x[1] print(a*b,end=' ') print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmps3cj1ck7/tmpfpyi6h7y.py", line 1, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s935361412
p02389
u569585396
1497507190
Python
Python3
py
Runtime Error
0
0
73
a = int(input()) b = int(input()) print("a * b" + " " + "a * 2 + b * 2")
Traceback (most recent call last): File "/tmp/tmpgl7k6_r8/tmpq3zs6c61.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s221184284
p02389
u323082382
1497507197
Python
Python3
py
Runtime Error
0
0
71
a,b = map(int,input().split()) c = a*b d = a*2 + b*2 print(c)print(d)
File "/tmp/tmpqu7d8j38/tmp_uy2558v.py", line 6 print(c)print(d) ^^^^^ SyntaxError: invalid syntax
s706737628
p02389
u433181015
1497507219
Python
Python3
py
Runtime Error
0
0
87
a,b = int(input().split()) area = a*b mawari_length = (a+b)*2 print(area,mawari_length)
Traceback (most recent call last): File "/tmp/tmpa6m5gl4h/tmp4sx3gyn6.py", line 1, in <module> a,b = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s474919262
p02389
u721221949
1497507250
Python
Python3
py
Runtime Error
0
0
69
[a, b] = [int(_) for _ in input().split()] print(a*b + " " + (a+b)*2)
Traceback (most recent call last): File "/tmp/tmpecwy7vpq/tmpfwn27_sa.py", line 1, in <module> [a, b] = [int(_) for _ in input().split()] ^^^^^^^ EOFError: EOF when reading a line