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
s000382945
p02389
u559049040
1499173030
Python
Python3
py
Runtime Error
0
0
84
val = input() sp = val.split() print('{} {}'.format(sp[0]*sp[1], sp[0]*2+sp[1]*2))
Traceback (most recent call last): File "/tmp/tmpa13dy51a/tmp9q5yf9c9.py", line 1, in <module> val = input() ^^^^^^^ EOFError: EOF when reading a line
s541104163
p02389
u559049040
1499173111
Python
Python3
py
Runtime Error
0
0
131
val = input() sp = val.split() tate = int(sp[0]) yoko = int(sp[1]) print('{} {}'.format(str(sp[0]*sp[1]), str(sp[0]*2+sp[1]*2)))
Traceback (most recent call last): File "/tmp/tmpu3gbln3c/tmpa_3z866y.py", line 1, in <module> val = input() ^^^^^^^ EOFError: EOF when reading a line
s530851568
p02389
u350064373
1499232653
Python
Python3
py
Runtime Error
0
0
128
import re t = re.search(r"(\d{1,3})\s(\d{1,3})", input("")) a = t.group(1) b = t.group(2) x = a * b y = a*2 + b*2 print(x,y)
Traceback (most recent call last): File "/tmp/tmp76vyqdvi/tmp95z_3cdl.py", line 3, in <module> t = re.search(r"(\d{1,3})\s(\d{1,3})", input("")) ^^^^^^^^^ EOFError: EOF when reading a line
s203165151
p02389
u553951959
1499485483
Python
Python3
py
Runtime Error
0
0
129
a = input("input a: ") a = int(a) b = input("input b: ") b = int(b) print( a, b ) area = a*b line = 2*a + 2*b print( area, line )
Traceback (most recent call last): File "/tmp/tmpe2lk6ulq/tmp1i9_0ow5.py", line 1, in <module> a = input("input a: ") ^^^^^^^^^^^^^^^^^^ EOFError: EOF when reading a line
input a:
s702376161
p02389
u553951959
1499485949
Python
Python3
py
Runtime Error
0
0
117
a = input("input a: ") a = int (a) b = input("input b: ") b = int (b) area = a*b line = 2*a + 2*b print( area, line )
Traceback (most recent call last): File "/tmp/tmp84d3oued/tmpfh99muy7.py", line 1, in <module> a = input("input a: ") ^^^^^^^^^^^^^^^^^^ EOFError: EOF when reading a line
input a:
s258338618
p02389
u553951959
1499486362
Python
Python3
py
Runtime Error
0
0
81
a = int(input()) b = int(input()) area = a*b line = 2*a + 2*b print( area, line )
Traceback (most recent call last): File "/tmp/tmptoqz579b/tmp0t906lk0.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s310727429
p02389
u553951959
1499486538
Python
Python3
py
Runtime Error
0
0
78
a = int(input()) b = int(input()) area = a*b line = 2*a + 2*b print(area,line)
Traceback (most recent call last): File "/tmp/tmpsi71y2ix/tmp47u_gc78.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s127500726
p02389
u553951959
1499488052
Python
Python3
py
Runtime Error
0
0
79
a, b = map(int, input().split()) area = a*b line = 2*(a+b) ptint ( area, line )
Traceback (most recent call last): File "/tmp/tmp56bw2hhw/tmp8q4b2pbz.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s811093618
p02389
u184989919
1499497885
Python
Python3
py
Runtime Error
0
0
50
w = int(input()) h = int(input()) print((w+h)*2)
Traceback (most recent call last): File "/tmp/tmp59ioyer0/tmp7ef4heq1.py", line 2, in <module> w = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s315055233
p02389
u184989919
1499498217
Python
Python3
py
Runtime Error
0
0
101
numbers = list(map(int,input().split())) print((numbers[0]*numbers[1])+" "+(numbers[0]+numbers[1])*2)
Traceback (most recent call last): File "/tmp/tmpfjbod6w5/tmp12umdee2.py", line 1, in <module> numbers = list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s448639483
p02389
u311299757
1499693407
Python
Python3
py
Runtime Error
0
0
38
a, b = input.split() print(a) print(b)
Traceback (most recent call last): File "/tmp/tmpvzlzw26n/tmppqqi7z63.py", line 1, in <module> a, b = input.split() ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s682497656
p02389
u311299757
1499693472
Python
Python3
py
Runtime Error
0
0
30
print(input) print(a) print(b)
Traceback (most recent call last): File "/tmp/tmp11xwvrcx/tmpvlljtouz.py", line 2, in <module> print(a) ^ NameError: name 'a' is not defined
<built-in function input>
s160233929
p02389
u311299757
1499694609
Python
Python3
py
Runtime Error
0
0
77
[a,b]=input.split() a = int(a) b = int(b) print("{} {}".format(a*b, 2*a+2*b))
Traceback (most recent call last): File "/tmp/tmpue88wvoe/tmpybfzjepa.py", line 1, in <module> [a,b]=input.split() ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s040058633
p02389
u311299757
1499694686
Python
Python3
py
Runtime Error
0
0
119
def temp(val): [a,b]=val.split() a = int(a) b = int(b) print("{} {}".format(a*b, 2*a+2*b)) temp(input)
Traceback (most recent call last): File "/tmp/tmpr_g4m90w/tmp50x0xu9g.py", line 7, in <module> temp(input) File "/tmp/tmpr_g4m90w/tmp50x0xu9g.py", line 2, in temp [a,b]=val.split() ^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s274899689
p02389
u043639882
1499726425
Python
Python3
py
Runtime Error
0
0
47
a=int(input()) b=int(input()) print(a*b,2(a+b))
/tmp/tmp0kpuzrxk/tmpuorp4sbh.py:3: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? print(a*b,2(a+b)) Traceback (most recent call last): File "/tmp/tmp0kpuzrxk/tmpuorp4sbh.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s241338774
p02389
u043639882
1499726546
Python
Python3
py
Runtime Error
0
0
63
a=int(input()) b=int(input()) result=(a*b,2(a+b)) print(result)
/tmp/tmpeyx88h4q/tmpclzg8_fu.py:3: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? result=(a*b,2(a+b)) Traceback (most recent call last): File "/tmp/tmpeyx88h4q/tmpclzg8_fu.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s606801505
p02389
u043639882
1499726863
Python
Python3
py
Runtime Error
0
0
64
a=int(input()) b=int(input()) result=(a*b,2*(a+b)) print(result)
Traceback (most recent call last): File "/tmp/tmpm6rj35kb/tmpahip_hlb.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s236876545
p02389
u043639882
1499726980
Python
Python3
py
Runtime Error
0
0
64
a=int(input()) b=int(input()) result=[a*b,a*(a+b)] print(result)
Traceback (most recent call last): File "/tmp/tmpmtslbuam/tmpfp73y44g.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s918421966
p02389
u498511622
1500082062
Python
Python3
py
Runtime Error
0
0
55
a=int(input()) b=int(input()) print(a*b) print(2*(a+b))
Traceback (most recent call last): File "/tmp/tmpb1z3dydw/tmpfm4goj18.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s393786722
p02389
u663910047
1500100717
Python
Python3
py
Runtime Error
0
0
49
a,b= map(int, input(),split()) print(a*b,2*(a+b))
Traceback (most recent call last): File "/tmp/tmpsvwcyus0/tmp1pilixcy.py", line 1, in <module> a,b= map(int, input(),split()) ^^^^^^^ EOFError: EOF when reading a line
s386762132
p02389
u663910047
1500100769
Python
Python3
py
Runtime Error
0
0
49
a,b= map(int, input(),split()) print(a*b,2*(a+b))
Traceback (most recent call last): File "/tmp/tmpkc4yvlut/tmpbedmln57.py", line 1, in <module> a,b= map(int, input(),split()) ^^^^^^^ EOFError: EOF when reading a line
s888178260
p02389
u447009770
1500177726
Python
Python3
py
Runtime Error
0
0
65
l = map(int, raw_input().split()) print(l[0]*l[1], (l[0]+l[1])*2)
Traceback (most recent call last): File "/tmp/tmpfuub01wf/tmpsabxe09i.py", line 1, in <module> l = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s660639431
p02389
u350064373
1500294784
Python
Python3
py
Runtime Error
0
0
100
x = input("") x2 = x.split() result = x2[0] * x2[1] result2= x2[0]*2 + x2[1]*2 print(result,result2)
Traceback (most recent call last): File "/tmp/tmpysga2tn8/tmp83e610ac.py", line 1, in <module> x = input("") ^^^^^^^^^ EOFError: EOF when reading a line
s368439727
p02389
u853619096
1500363291
Python
Python
py
Runtime Error
0
0
49
a,b=int(input()).split() print(a*b+" "+(a*2+b*2))
Traceback (most recent call last): File "/tmp/tmpfpymyg01/tmp3eb2_x8w.py", line 1, in <module> a,b=int(input()).split() ^^^^^^^ EOFError: EOF when reading a line
s122361181
p02389
u853619096
1500363425
Python
Python3
py
Runtime Error
0
0
49
a,b=int(input()).split() print(a*b+" "+(a*2+b*2))
Traceback (most recent call last): File "/tmp/tmp_2jr6t62/tmp_e76mjnt.py", line 1, in <module> a,b=int(input()).split() ^^^^^^^ EOFError: EOF when reading a line
s687235638
p02389
u138422838
1500806524
Python
Python
py
Runtime Error
0
0
52
a,b = input().split() S = a*b L = 2*(a+b) print(S L)
File "/tmp/tmplzz060q8/tmpujplz_tc.py", line 4 print(S L) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s413136797
p02389
u138422838
1500806622
Python
Python
py
Runtime Error
0
0
57
a,b = int(input().split()) S = a*b L = 2*(a+b) print(S L)
File "/tmp/tmplnpyru2d/tmph1bh9rgx.py", line 4 print(S L) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s725605031
p02389
u138422838
1500806945
Python
Python
py
Runtime Error
0
0
57
a,b = input(int()).split() S = a*b L = 2*(a+b) print(S L)
File "/tmp/tmpfv6y30xk/tmpjl1mrnqe.py", line 4 print(S L) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s959765234
p02389
u138422838
1500806966
Python
Python
py
Runtime Error
0
0
62
a,b = input().split() S = int(a)*int(b) L = 2*(a+b) print(S L)
File "/tmp/tmpn0hvx6lp/tmp_j63obz1.py", line 4 print(S L) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s432243299
p02389
u138422838
1500806980
Python
Python
py
Runtime Error
0
0
72
a,b = input().split() S = int(a)*int(b) L = 2*(int(a)+int(b)) print(S L)
File "/tmp/tmpg0c86j30/tmpcq9ol0so.py", line 4 print(S L) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s533756394
p02389
u138422838
1500806994
Python
Python
py
Runtime Error
0
0
82
a,b = input().split() S = int(a)*int(b) L = 2*(int(a)+int(b)) print(int(S) int(L))
File "/tmp/tmpqrl0ma_2/tmp9in20eeu.py", line 4 print(int(S) int(L)) ^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s932197761
p02389
u138422838
1500807004
Python
Python3
py
Runtime Error
0
0
82
a,b = input().split() S = int(a)*int(b) L = 2*(int(a)+int(b)) print(int(S) int(L))
File "/tmp/tmpj4d8y8_8/tmpf5vp_bb5.py", line 4 print(int(S) int(L)) ^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s699308373
p02389
u138422838
1500807340
Python
Python3
py
Runtime Error
0
0
57
a,b = int(input().split()) S = a*b L = 2*(a+b) print(S,L)
Traceback (most recent call last): File "/tmp/tmp3bqe2fep/tmpw6hcrvw5.py", line 1, in <module> a,b = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s795296144
p02389
u138422838
1500807375
Python
Python3
py
Runtime Error
0
0
67
a,b = int(input().split()) S = int(a*b) L = int(2*(a+b)) print(S,L)
Traceback (most recent call last): File "/tmp/tmpk6g4lo6i/tmp1g0dt5r9.py", line 1, in <module> a,b = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s232313940
p02389
u791170614
1501142789
Python
Python3
py
Runtime Error
0
0
172
a, b = map(int, input().split()) def SquareArea(a, b): return str(a * b) def SideLength(a, b): return str((a + b)*2) print(SquareArea(a, b)???+ " " + SideLength(a, b))
File "/tmp/tmpp0hrb69l/tmpt25r5mf3.py", line 9 print(SquareArea(a, b)???+ " " + SideLength(a, b)) ^ SyntaxError: invalid syntax
s904122292
p02389
u393619373
1501247680
Python
Python3
py
Runtime Error
0
0
141
def Area(a, b): return a*b def Lap(a, b): return 2*(a+b) num = input() a,b = num.split() print('{} {}'.format(Area(a,b), Lap(a,b)))
Traceback (most recent call last): File "/tmp/tmp_v0zsve0/tmpibwj8tmh.py", line 7, in <module> num = input() ^^^^^^^ EOFError: EOF when reading a line
s868107545
p02389
u393619373
1501247745
Python
Python3
py
Runtime Error
0
0
146
def Area(a, b): return a*b def Lap(a, b): return 2*(a+b) num = input() a,b = int(num.split()) print('{} {}'.format(Area(a,b), Lap(a,b)))
Traceback (most recent call last): File "/tmp/tmp1yo8euwd/tmpfqiorodf.py", line 7, in <module> num = input() ^^^^^^^ EOFError: EOF when reading a line
s059186743
p02389
u589574479
1501331884
Python
Python3
py
Runtime Error
0
0
68
a = int(input()) b = int(input()) print(a*b,end=" ") print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpt1ougyep/tmpm8wyxlc5.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s663270733
p02389
u997714038
1501476393
Python
Python3
py
Runtime Error
0
0
45
a,b = map(input().split()) print(a*b,2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpwysiqxsd/tmpanhm73om.py", line 1, in <module> a,b = map(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s865488461
p02389
u467070262
1501597933
Python
Python3
py
Runtime Error
0
0
72
x = int(input()) y = int(input()) print(str(x*y) + " " + str(2*x + 2*y))
Traceback (most recent call last): File "/tmp/tmpcp7cjobp/tmpy9f8omaf.py", line 1, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s623283471
p02389
u467070262
1501597963
Python
Python3
py
Runtime Error
0
0
90
x = int(input().rstrip()) y = int(input().rstrip()) print(str(x*y) + " " + str(2*x + 2*y))
Traceback (most recent call last): File "/tmp/tmps1qywtoc/tmpq9ia8zjs.py", line 1, in <module> x = int(input().rstrip()) ^^^^^^^ EOFError: EOF when reading a line
s370560062
p02389
u467070262
1501598150
Python
Python3
py
Runtime Error
0
0
106
line = input().rstrip().split(" ") x = int(line[0]) y = int(line[1]) print(str(x*y) + " " + str(2*x + 2*y)
File "/tmp/tmplbirahhq/tmplpo0tfi4.py", line 4 print(str(x*y) + " " + str(2*x + 2*y) ^ SyntaxError: '(' was never closed
s079588585
p02389
u957028788
1501909986
Python
Python
py
Runtime Error
0
0
35
a,b = raw_input.split.map print a*b
File "/tmp/tmpvn53pqx9/tmplrlph70w.py", line 2 print a*b ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s689748370
p02389
u744121389
1502351878
Python
Python3
py
Runtime Error
0
0
30
print(a * b (a * 2) + (b * 2))
Traceback (most recent call last): File "/tmp/tmp9a2n8o73/tmpbaf9xh8c.py", line 1, in <module> print(a * b (a * 2) + (b * 2)) ^ NameError: name 'a' is not defined
s431451018
p02389
u744121389
1502587892
Python
Python3
py
Runtime Error
0
0
74
a,b = map(int, input().split()) c = a * b d = (a + b) *2 print(str(c,d))
Traceback (most recent call last): File "/tmp/tmpfytd9hgb/tmpxlzzlx7i.py", line 1, in <module> a,b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s724869281
p02389
u744121389
1502587954
Python
Python3
py
Runtime Error
0
0
74
a,b = map(int, input().split()) c = a * b d = (a + b) *2 print(str(c,d))
Traceback (most recent call last): File "/tmp/tmp_4n5wo8_/tmp5a08q_ef.py", line 1, in <module> a,b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s298982938
p02389
u744121389
1502588041
Python
Python3
py
Runtime Error
0
0
69
a,b = map(int, input().split()) c = a * b d = (a + b) *2 print(c d)
File "/tmp/tmp9ruopb3a/tmp19yumbjr.py", line 6 print(c d) ^ SyntaxError: invalid syntax
s823689180
p02389
u733159526
1502716499
Python
Python3
py
Runtime Error
0
0
59
s = int(input()).split() print(s[0]*s[1],' ',s[0]*2+s[1]*2)
Traceback (most recent call last): File "/tmp/tmpg8qr_pwm/tmpflqgkg11.py", line 1, in <module> s = int(input()).split() ^^^^^^^ EOFError: EOF when reading a line
s918149037
p02389
u733159526
1502716651
Python
Python3
py
Runtime Error
0
0
64
s = input().split() print(str(s[0]*s[1]),' ',str(s[0]*2+s[1]*2))
Traceback (most recent call last): File "/tmp/tmpehotadr_/tmpwlcnyvd6.py", line 1, in <module> s = input().split() ^^^^^^^ EOFError: EOF when reading a line
s376022498
p02389
u733159526
1502716982
Python
Python3
py
Runtime Error
0
0
79
s = int(input().split()) print(int(s[0])*int(s[1]),' ',int(s[0]*2)+int(s[1]*2))
Traceback (most recent call last): File "/tmp/tmp868a7jt8/tmpwwnax5pg.py", line 1, in <module> s = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s596622203
p02389
u117053676
1502785023
Python
Python3
py
Runtime Error
0
0
49
a,b = int(input().split()) print(a*b," ",2*(a+b))
Traceback (most recent call last): File "/tmp/tmpro_qrpp0/tmpqfy7t7sa.py", line 1, in <module> a,b = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s610695248
p02389
u117053676
1502798562
Python
Python3
py
Runtime Error
0
0
68
a,b = map(int,input().sep()) men = a*b hen =(a+b)*2 print(men,hen)
Traceback (most recent call last): File "/tmp/tmp93f29c7y/tmpnm5ecj4l.py", line 1, in <module> a,b = map(int,input().sep()) ^^^^^^^ EOFError: EOF when reading a line
s629140629
p02389
u117053676
1502798649
Python
Python3
py
Runtime Error
0
0
79
a,b = map(int,input().sep()) men = a*b hen = (a+b)*2 print(int(men),int(hen))
Traceback (most recent call last): File "/tmp/tmpudrgzb_7/tmpl34ifop8.py", line 1, in <module> a,b = map(int,input().sep()) ^^^^^^^ EOFError: EOF when reading a line
s472256348
p02389
u283452598
1503037762
Python
Python3
py
Runtime Error
0
0
64
a,b=input().split() print(int(a)*int(b)+" "+(int(a)*2+int(b)*2))
Traceback (most recent call last): File "/tmp/tmpxd1dnn4a/tmpa25_3bsh.py", line 1, in <module> a,b=input().split() ^^^^^^^ EOFError: EOF when reading a line
s197675727
p02389
u283452598
1503037843
Python
Python3
py
Runtime Error
0
0
66
x=input().split() a,b=int(x[0]),int(x[1]) print(a*b+" "+(a*2+b*2))
Traceback (most recent call last): File "/tmp/tmpy40ruwwx/tmpdld0m6ph.py", line 1, in <module> x=input().split() ^^^^^^^ EOFError: EOF when reading a line
s770023569
p02389
u283452598
1503038293
Python
Python3
py
Runtime Error
0
0
66
x=input().split() a=int(x[0]) b=int(x[1]) print(a*b+" "+(a*2+b*2))
Traceback (most recent call last): File "/tmp/tmp_yua9f0w/tmpnjtgyx12.py", line 1, in <module> x=input().split() ^^^^^^^ EOFError: EOF when reading a line
s364021450
p02389
u316697096
1503130268
Python
Python
py
Runtime Error
0
0
32
a b = input() print 2*(a+b) a*b
File "/tmp/tmp5irk4vy3/tmpb9jmy1pd.py", line 1 a b = input() ^ SyntaxError: invalid syntax
s400256977
p02389
u316697096
1503130296
Python
Python
py
Runtime Error
0
0
33
a b = input() print a*b 2*(a+b)
File "/tmp/tmpy781xqt7/tmpzou33dhs.py", line 1 a b = input() ^ SyntaxError: invalid syntax
s879121971
p02389
u316697096
1503130530
Python
Python
py
Runtime Error
0
0
31
a,b= input() print a*b, 2*(a+b)
File "/tmp/tmpe5ogbnhc/tmpf6hl1gdg.py", line 2 print a*b, 2*(a+b) ^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s552388396
p02389
u316697096
1503130916
Python
Python
py
Runtime Error
0
0
39
a,b= input().split() print a*b, 2*(a+b)
File "/tmp/tmpyc5r_8s9/tmpc5uqxapy.py", line 2 print a*b, 2*(a+b) ^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s762607774
p02389
u316697096
1503132827
Python
Python
py
Runtime Error
0
0
67
a,b = map(int,raw_input().split()) #???????¬? print a*b , 2*(a+b)
File "/tmp/tmp44gb1z44/tmpb0_shyo0.py", line 3 print a*b , 2*(a+b) ^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s966300517
p02389
u316697096
1503132959
Python
Python
py
Runtime Error
0
0
64
a,b=map(int,raw_input().split()) #???????¬? print a*b,2*(a+b)
File "/tmp/tmpsva4reu1/tmp2ck0kf78.py", line 2 print a*b,2*(a+b) ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s397445597
p02389
u395334793
1503249705
Python
Python3
py
Runtime Error
0
0
60
x, y = int(input().split) print("{} {}".format(x*y,2*(x+y)))
Traceback (most recent call last): File "/tmp/tmpdwlgeq0w/tmpknjit2br.py", line 1, in <module> x, y = int(input().split) ^^^^^^^ EOFError: EOF when reading a line
s436291296
p02389
u506705885
1503412890
Python
Python3
py
Runtime Error
0
0
56
w=input() h=input() w=int(w) h=int(h) print(w*h,2*w+2*h)
Traceback (most recent call last): File "/tmp/tmpgulqkt9t/tmpj8my424w.py", line 1, in <module> w=input() ^^^^^^^ EOFError: EOF when reading a line
s020574185
p02389
u727538672
1503469162
Python
Python3
py
Runtime Error
0
0
60
a, b = map(int.input().split()) print(a * b, a * 2 + b * 2)
Traceback (most recent call last): File "/tmp/tmpz4d0ycau/tmpw8jf47cb.py", line 1, in <module> a, b = map(int.input().split()) ^^^^^^^^^ AttributeError: type object 'int' has no attribute 'input'
s182530815
p02389
u740564992
1503545230
Python
Python3
py
Runtime Error
0
0
99
a = input() b = input() a = int(a) b = int(b) S = a*b syuu = 2*a+2*b print(str(S)+" "+str(syuu))
Traceback (most recent call last): File "/tmp/tmpc662_krw/tmph6duu_ll.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s840856344
p02389
u633333374
1503815576
Python
Python
py
Runtime Error
0
0
48
a,b = map(int,input().split()) print a*b,(a+b)*2
File "/tmp/tmphcout1uf/tmpz467uun6.py", line 2 print a*b,(a+b)*2 ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s445710990
p02389
u316085611
1503815834
Python
Python
py
Runtime Error
0
0
50
a,b=map(int,raw_input(),split()) print a*b,(a+b)*2
File "/tmp/tmp13298nrk/tmpdq7zby_d.py", line 2 print a*b,(a+b)*2 ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s907629881
p02389
u153665391
1503835275
Python
Python3
py
Runtime Error
0
0
106
a = [ input().split ] x = int( a[0] ) y = int( a[1] ) area = x * y rec = ( x + y ) * 2 print( area rec )
File "/tmp/tmpvw5x91i6/tmp13zloilw.py", line 6 print( area rec ) ^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s157542226
p02389
u132415474
1504516417
Python
Python3
py
Runtime Error
0
0
63
a, b = exec(input().replace(' ', ',')) print(f"{a*b} {2(a+b)}")
/tmp/tmphsyvd5z3/tmpvzbhgqm_.py:2: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? print(f"{a*b} {2(a+b)}") Traceback (most recent call last): File "/tmp/tmphsyvd5z3/tmpvzbhgqm_.py", line 1, in <module> a, b = exec(input().replace(' ', ',')) ^^^^^^^ EOFError: EOF when re...
s948369583
p02389
u132415474
1504516481
Python
Python3
py
Runtime Error
0
0
73
a, b = exec(input().replace(' ', ',')) print("{} {}".format(a*b, 2(a+b)))
/tmp/tmplyqlxtw6/tmp6n2ioocq.py:2: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? print("{} {}".format(a*b, 2(a+b))) Traceback (most recent call last): File "/tmp/tmplyqlxtw6/tmp6n2ioocq.py", line 1, in <module> a, b = exec(input().replace(' ', ',')) ^^^^^^^ EOFError: E...
s230157924
p02389
u132415474
1504516566
Python
Python3
py
Runtime Error
0
0
73
a, b = eval(input().replace(' ', ',')) print("{} {}".format(a*b, 2(a+b)))
/tmp/tmplel92pfi/tmpjqc46eml.py:2: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? print("{} {}".format(a*b, 2(a+b))) Traceback (most recent call last): File "/tmp/tmplel92pfi/tmpjqc46eml.py", line 1, in <module> a, b = eval(input().replace(' ', ',')) ^^^^^^^ EOFError: E...
s180687196
p02389
u563181068
1504947430
Python
Python3
py
Runtime Error
0
0
147
a=input() s=int(a) if s<86400 and s>=0: h=int(s/3600) m=int((s-h*3600)/60) s=s-h*3600-m*60 print(h,":",m,":",s) else: exit()
Traceback (most recent call last): File "/tmp/tmpauyanwf5/tmpdqt3oi6r.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s568769397
p02389
u362494298
1505100658
Python
Python3
py
Runtime Error
0
0
65
hen = map(int(input())) print(hen[0]*hen[2] " " hen[0]*2+hen[2])
File "/tmp/tmpptzc4i3i/tmpxhdbjvf2.py", line 3 print(hen[0]*hen[2] " " hen[0]*2+hen[2]) ^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s962369855
p02389
u362494298
1505101295
Python
Python3
py
Runtime Error
0
0
71
hen = map(int(input().split()) print(hen[0]*hen[1] hen[0]*2+hen[1]*2)
File "/tmp/tmpnm44f2qr/tmpfvw7l5g2.py", line 1 hen = map(int(input().split()) ^ SyntaxError: '(' was never closed
s885303248
p02389
u362494298
1505101409
Python
Python3
py
Runtime Error
0
0
54
a,b = map(int(input().split()) print(a*b, ,a*2 + b*2)
File "/tmp/tmp38g7tbn0/tmph9pt02zy.py", line 1 a,b = map(int(input().split()) ^ SyntaxError: '(' was never closed
s147525195
p02389
u362494298
1505101487
Python
Python3
py
Runtime Error
0
0
52
a,b = map(int,input().split() print(a*b, a*2 + b*2)
File "/tmp/tmp50g9qj3y/tmp6z_0yuix.py", line 1 a,b = map(int,input().split() ^ SyntaxError: '(' was never closed
s782886559
p02389
u362494298
1505392485
Python
Python3
py
Runtime Error
0
0
51
a,b=map(int, input().split()) print(a*b +' '+2*a*b)
Traceback (most recent call last): File "/tmp/tmpvks2uqt7/tmpcdwjh6jn.py", line 1, in <module> a,b=map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s481782895
p02389
u362494298
1505392583
Python
Python3
py
Runtime Error
0
0
46
a,b=map(int, input().split()) print(a*b,2a+2b)
File "/tmp/tmptrppixfl/tmpi2fzz36e.py", line 2 print(a*b,2a+2b) ^ SyntaxError: invalid decimal literal
s398936868
p02389
u088372268
1505447347
Python
Python3
py
Runtime Error
0
0
75
x = input() x = x.split() s = x[1] * x[2] l = s * (x[1] + x[2]) print(s, l)
Traceback (most recent call last): File "/tmp/tmplyeiz1jh/tmp9hn55vu3.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s533468005
p02389
u088372268
1505454156
Python
Python3
py
Runtime Error
0
0
55
x = list(input().split) print(x[1]*x[2], 2*(x[1]+x[2]))
Traceback (most recent call last): File "/tmp/tmpyykjcpdn/tmp51hcrguf.py", line 1, in <module> x = list(input().split) ^^^^^^^ EOFError: EOF when reading a line
s221117065
p02389
u088372268
1505455197
Python
Python3
py
Runtime Error
0
0
69
x = list(input().split()) s = x[0]*x[1] l = 2*(x[0]+x[1]) print(s, l)
Traceback (most recent call last): File "/tmp/tmpiqe6c1yp/tmpotmurv_o.py", line 1, in <module> x = list(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s404247801
p02389
u903579014
1505866611
Python
Python3
py
Runtime Error
0
0
72
x1 = input() x2 = input() x1 = int(x1) x2 = int(x2) x3 = x1+x2 print(x3)
Traceback (most recent call last): File "/tmp/tmp9c6rwnh7/tmp0wgb3lda.py", line 1, in <module> x1 = input() ^^^^^^^ EOFError: EOF when reading a line
s393932193
p02389
u015553205
1506492365
Python
Python3
py
Runtime Error
0
0
88
import sys args = sys.argv a = int(args[1]) b = int(args[2]) print(a*b) print(2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpxd1ci2wq/tmpovwol1er.py", line 4, in <module> a = int(args[1]) ~~~~^^^ IndexError: list index out of range
s109099191
p02389
u015553205
1506493210
Python
Python3
py
Runtime Error
0
0
120
import sys args = sys.argv a = int(args[1]) b = int(args[2]) def P(x,y): print(x*y) print(2*x+2*y) return 0 P(a,b)
Traceback (most recent call last): File "/tmp/tmp6ll4hoa7/tmpiffpo2ku.py", line 4, in <module> a = int(args[1]) ~~~~^^^ IndexError: list index out of range
s114830543
p02389
u015553205
1506493564
Python
Python3
py
Runtime Error
0
0
112
import sys args = sys.argv a = int(args[1]) b = int(args[2]) def P(x,y): print(x*y,2*(x+y)) return 0 P(a,b)
Traceback (most recent call last): File "/tmp/tmpw6jdq4d0/tmp0eew2_90.py", line 4, in <module> a = int(args[1]) ~~~~^^^ IndexError: list index out of range
s383992932
p02389
u015553205
1506493666
Python
Python3
py
Runtime Error
0
0
112
import sys args = sys.argv a = int(args[0]) b = int(args[1]) def P(x,y): print(x*y,2*(x+y)) return 0 P(a,b)
Traceback (most recent call last): File "/tmp/tmpar5qh24k/tmp5lgxremp.py", line 4, in <module> a = int(args[0]) ^^^^^^^^^^^^ ValueError: invalid literal for int() with base 10: '/tmp/tmpar5qh24k/tmp5lgxremp.py'
s351700838
p02389
u015553205
1506494265
Python
Python3
py
Runtime Error
0
0
112
import sys args = sys.argv a = int(args[0]) b = int(args[1]) def P(x,y): print(x*y,2*(x+y)) return 0 P(a,b)
Traceback (most recent call last): File "/tmp/tmp2tb_ajvc/tmprwn1e_s6.py", line 4, in <module> a = int(args[0]) ^^^^^^^^^^^^ ValueError: invalid literal for int() with base 10: '/tmp/tmp2tb_ajvc/tmprwn1e_s6.py'
s698046317
p02389
u015553205
1506494343
Python
Python3
py
Runtime Error
0
0
112
import sys args = sys.argv a = int(args[0]) b = int(args[1]) def P(x,y): print(x*y,2*(x+y)) return 0 P(a,b)
Traceback (most recent call last): File "/tmp/tmpizrugphw/tmpffjpud8a.py", line 4, in <module> a = int(args[0]) ^^^^^^^^^^^^ ValueError: invalid literal for int() with base 10: '/tmp/tmpizrugphw/tmpffjpud8a.py'
s444510721
p02389
u015553205
1506499092
Python
Python3
py
Runtime Error
0
0
96
a = input() b = input() a = int(a) b = int(b) def P(x,y): print(x*y,2*(x+y)) return 0 P(a,b)
Traceback (most recent call last): File "/tmp/tmp05_x89ji/tmpvgd0njio.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s184710940
p02389
u505411588
1507197997
Python
Python3
py
Runtime Error
0
0
45
x = int(input()) y = int(input()) print(x*y)
Traceback (most recent call last): File "/tmp/tmpxqjf8z4d/tmpgu1o7uln.py", line 1, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s829150190
p02389
u505411588
1507199580
Python
Python3
py
Runtime Error
0
0
38
x,y = int(input()) print(x*y,x*2+y*2)
Traceback (most recent call last): File "/tmp/tmp52m73qt0/tmphxns4_um.py", line 1, in <module> x,y = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s804370405
p02389
u505411588
1507199622
Python
Python3
py
Runtime Error
0
0
53
x = int(input()) y = int(input()) print(x*y,x*2+y*2)
Traceback (most recent call last): File "/tmp/tmp56fh_wmu/tmpws6ti4c0.py", line 1, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s958986575
p02389
u505411588
1507199795
Python
Python3
py
Runtime Error
0
0
53
x = input() y = input() int(x,y) print(x*y,x*2+y*2)
Traceback (most recent call last): File "/tmp/tmp4zlpywf_/tmp_di49rd7.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s759778051
p02389
u505411588
1507199891
Python
Python3
py
Runtime Error
0
0
53
a = input() b = input() int(a,b) print(a*b,a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpmj42ozn8/tmpakcqm_rf.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s965966661
p02389
u505411588
1507200407
Python
Python3
py
Runtime Error
0
0
53
a = int(input()) b = int(input()) print(a*b,a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpqvr2by2t/tmp2btjdta8.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s958107828
p02389
u219202227
1507274966
Python
Python3
py
Runtime Error
0
0
61
a,b=int(input()).split() print("{0} {1}".format(a*b,a*2+b*2))
Traceback (most recent call last): File "/tmp/tmpdd3_tdp4/tmpll10wsvq.py", line 1, in <module> a,b=int(input()).split() ^^^^^^^ EOFError: EOF when reading a line
s762450688
p02389
u219202227
1507275024
Python
Python3
py
Runtime Error
0
0
61
a,b=int(input().split()) print("{0} {1}".format(a*b,a*2+b*2))
Traceback (most recent call last): File "/tmp/tmp7aw05583/tmp730lb4m4.py", line 1, in <module> a,b=int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s259713168
p02389
u825994660
1507520241
Python
Python3
py
Runtime Error
0
0
71
a = int(input()) b = int(input()) print(str(a*b) + " " + str(2a + 2b))
File "/tmp/tmpgwmdaga5/tmpnkkgyrog.py", line 4 print(str(a*b) + " " + str(2a + 2b)) ^ SyntaxError: invalid decimal literal
s404586774
p02389
u825994660
1507520327
Python
Python3
py
Runtime Error
0
0
65
a = int(input()) b = int(input()) print(str(a*b) ,str(2a + 2b))
File "/tmp/tmpue6uirqz/tmpta6ydce6.py", line 4 print(str(a*b) ,str(2a + 2b)) ^ SyntaxError: invalid decimal literal