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
s420263474
p02389
u854556813
1551618974
Python
Python
py
Runtime Error
0
0
66
l=input().split() a=int(l[0]) b=int(l[1]) print(a*b);print(2a+2b)
File "/tmp/tmp7tiu_q42/tmpsrww9fkx.py", line 4 print(a*b);print(2a+2b) ^ SyntaxError: invalid decimal literal
s107855912
p02389
u854556813
1551619014
Python
Python
py
Runtime Error
0
0
68
l=input().split() a=int(l[0]) b=int(l[1]) print(a*b);print(2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpv33mjb5n/tmp677_9p_3.py", line 1, in <module> l=input().split() ^^^^^^^ EOFError: EOF when reading a line
s440814320
p02389
u854556813
1551619824
Python
Python
py
Runtime Error
0
0
61
l=input().split() a=int(l[0]) b=int(l[1]) print(a*b,2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpz158_jlu/tmpeipo611j.py", line 1, in <module> l=input().split() ^^^^^^^ EOFError: EOF when reading a line
s938804692
p02389
u854556813
1551619955
Python
Python
py
Runtime Error
0
0
67
l = input().split() a = int(l[0]) b = int(l[1]) print(a*b,2*a+2*b)
Traceback (most recent call last): File "/tmp/tmplwvofhb_/tmpd22kuqfm.py", line 1, in <module> l = input().split() ^^^^^^^ EOFError: EOF when reading a line
s414211343
p02389
u854556813
1551620256
Python
Python
py
Runtime Error
0
0
71
l=input().split() a=int(l[0]) b=int(l[1]) print(str(a*b),str(2*a+2*b))
Traceback (most recent call last): File "/tmp/tmp4bmhk9up/tmpt8me4fy7.py", line 1, in <module> l=input().split() ^^^^^^^ EOFError: EOF when reading a line
s725359243
p02389
u854556813
1551620269
Python
Python
py
Runtime Error
0
0
63
l=input() a=int(l[0]) b=int(l[1]) print(str(a*b),str(2*a+2*b))
Traceback (most recent call last): File "/tmp/tmpk1u0cmdu/tmpr8buzfzv.py", line 1, in <module> l=input() ^^^^^^^ EOFError: EOF when reading a line
s774137848
p02389
u854556813
1551620441
Python
Python
py
Runtime Error
0
0
76
l=input().split() a=int(l[0]) b=int(l[1]) print('{} {}'.format(a*b,2*a+2*b)
File "/tmp/tmpg7vua7py/tmpnry3ysp0.py", line 4 print('{} {}'.format(a*b,2*a+2*b) ^ SyntaxError: '(' was never closed
s420294665
p02389
u854556813
1551620455
Python
Python
py
Runtime Error
0
0
77
l=input().split() a=int(l[0]) b=int(l[1]) print('{} {}'.format(a*b,2*a+2*b))
Traceback (most recent call last): File "/tmp/tmpoz25kvne/tmp8tl791e1.py", line 1, in <module> l=input().split() ^^^^^^^ EOFError: EOF when reading a line
s489340100
p02389
u854556813
1551620477
Python
Python
py
Runtime Error
0
0
80
l=input().split(' ') a=int(l[0]) b=int(l[1]) print('{} {}'.format(a*b,2*a+2*b))
Traceback (most recent call last): File "/tmp/tmpox630sqa/tmpw702rjga.py", line 1, in <module> l=input().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s139689651
p02389
u854556813
1551620519
Python
Python
py
Runtime Error
0
0
84
l=input().split(' '); a=int(l[0]); b=int(l[1]); print('{} {}'.format(a*b,2*a+2*b));
Traceback (most recent call last): File "/tmp/tmpmyqjxk11/tmp2cq4mta8.py", line 1, in <module> l=input().split(' '); ^^^^^^^ EOFError: EOF when reading a line
s222142051
p02389
u854556813
1551620586
Python
Python
py
Runtime Error
0
0
82
l=input().split(' ') a=int(l[0]) b=int(l[1]) print('{d} {d}'.format(a*b,2*a+2*b))
Traceback (most recent call last): File "/tmp/tmpuqepvid7/tmpbh25ymkq.py", line 1, in <module> l=input().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s556273676
p02389
u854556813
1551620595
Python
Python
py
Runtime Error
0
0
84
l=input().split(' ') a=int(l[0]) b=int(l[1]) print('{%d} {%d}'.format(a*b,2*a+2*b))
Traceback (most recent call last): File "/tmp/tmpe_iys4_h/tmpbstvz6uw.py", line 1, in <module> l=input().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s388019394
p02389
u854556813
1551620739
Python
Python
py
Runtime Error
0
0
74
l=input().split(' ') a=int(l[0]) b=int(l[1]) s=a*b s1=2*(a+b) print(s,s1)
Traceback (most recent call last): File "/tmp/tmpa2d1py0w/tmpfc89l5_o.py", line 1, in <module> l=input().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s682188461
p02389
u854556813
1551620761
Python
Python
py
Runtime Error
0
0
71
l=input().split() a=int(l[0]) b=int(l[1]) s=a*b s1=2*(a+b) print(s,s1)
Traceback (most recent call last): File "/tmp/tmp366vgdws/tmpe5ffphs_.py", line 1, in <module> l=input().split() ^^^^^^^ EOFError: EOF when reading a line
s351688679
p02389
u904261809
1555660794
Python
Python
py
Runtime Error
0
0
80
a, b = map(int, input().split()) s = a * b l = a * 2 + b * 2 print(s + " " + l)
Traceback (most recent call last): File "/tmp/tmpznxhp6hp/tmpy39ar_iy.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s838982940
p02389
u904261809
1555661088
Python
Python3
py
Runtime Error
0
0
80
a, b = map(int, input().split()) s = a * b l = a * 2 + b * 2 print(s + " " + l)
Traceback (most recent call last): File "/tmp/tmpubcyqxg_/tmp8kt8_a24.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s743977602
p02389
u482227082
1555672658
Python
Python3
py
Runtime Error
0
0
63
a, b = input().split() print (int(a)*int(b) 2*(int(a)+int(b)))
File "/tmp/tmplokd246p/tmpwqjc4f4x.py", line 2 print (int(a)*int(b) 2*(int(a)+int(b))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s182307425
p02389
u482227082
1555672713
Python
Python3
py
Runtime Error
0
0
64
a,b = input().split() print ( int(a)*int(b) 2*(int(a)+int(b)) )
File "/tmp/tmpzwhac6uo/tmp7ow5wjer.py", line 2 print ( int(a)*int(b) 2*(int(a)+int(b)) ) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s292404723
p02389
u870970010
1555689964
Python
Python
py
Runtime Error
0
0
94
ab=input() print(ab.split(' ')[0]*ab.split(' ')[1]+" "+(ab.split(' ')[0]+ab.split(' ')[1])*2)
Traceback (most recent call last): File "/tmp/tmpk7z4y3uv/tmpx7rnnkxq.py", line 1, in <module> ab=input() ^^^^^^^ EOFError: EOF when reading a line
s697505835
p02389
u870970010
1555690245
Python
Python
py
Runtime Error
0
0
90
ab=input() a=int(ab.split(' ')[0]) b=int(ab.split(' ')[1]) s=a*b l=(a+b)*2 print(s+" "+l)
Traceback (most recent call last): File "/tmp/tmpqo8q4as8/tmpaczwxsd6.py", line 1, in <module> ab=input() ^^^^^^^ EOFError: EOF when reading a line
s075456436
p02389
u870970010
1555690305
Python
Python3
py
Runtime Error
0
0
90
ab=input() a=int(ab.split(' ')[0]) b=int(ab.split(' ')[1]) s=a*b l=(a+b)*2 print(s+" "+l)
Traceback (most recent call last): File "/tmp/tmpbro9u26d/tmp8kc52dji.py", line 1, in <module> ab=input() ^^^^^^^ EOFError: EOF when reading a line
s742017289
p02389
u870970010
1555690492
Python
Python
py
Runtime Error
0
0
82
ab=input() a=split()[0] b=split()[1] s=a*b l=(a+b)*2 print("{0} {1}".format(s,l))
Traceback (most recent call last): File "/tmp/tmpynfx5f_9/tmp5r3hnnf_.py", line 1, in <module> ab=input() ^^^^^^^ EOFError: EOF when reading a line
s265658796
p02389
u870970010
1555693106
Python
Python3
py
Runtime Error
0
0
80
ab=input() a=ab.split()[0] b=ab.split()[1] print("{0} {1}".format(a*b,(a+b)*2))
Traceback (most recent call last): File "/tmp/tmpnrhofsk5/tmpdq32smlw.py", line 1, in <module> ab=input() ^^^^^^^ EOFError: EOF when reading a line
s943959595
p02389
u870970010
1555693125
Python
Python3
py
Runtime Error
0
0
82
ab=input() a=ab.split()[0] b=ab.split()[1] print("{0} {1}".format(a*b,((a+b)*2)))
Traceback (most recent call last): File "/tmp/tmp1g4eut9n/tmpjhucuj9g.py", line 1, in <module> ab=input() ^^^^^^^ EOFError: EOF when reading a line
s571278911
p02389
u870970010
1555693140
Python
Python3
py
Runtime Error
0
0
90
ab=input() a=ab.split()[0] b=ab.split()[1] print("{0} {1}".format(int(a*b),int((a+b)*2)))
Traceback (most recent call last): File "/tmp/tmpoflg6kfn/tmpb02c5m8z.py", line 1, in <module> ab=input() ^^^^^^^ EOFError: EOF when reading a line
s960159362
p02389
u870970010
1555693162
Python
Python3
py
Runtime Error
0
0
96
ab=input() a=ab.split(" ")[0] b=ab.split(" ")[1] print("{0} {1}".format(int(a*b),int((a+b)*2)))
Traceback (most recent call last): File "/tmp/tmpwd337ixi/tmph4zl7u7o.py", line 1, in <module> ab=input() ^^^^^^^ EOFError: EOF when reading a line
s500017899
p02389
u870970010
1555693167
Python
Python3
py
Runtime Error
0
0
96
ab=input() a=ab.split(" ")[0] b=ab.split(" ")[1] print("{0} {1}".format(int(a*b),int((a+b)*2)))
Traceback (most recent call last): File "/tmp/tmpfunih25d/tmp1f0t_6ju.py", line 1, in <module> ab=input() ^^^^^^^ EOFError: EOF when reading a line
s422479323
p02389
u870970010
1555693171
Python
Python3
py
Runtime Error
0
0
96
ab=input() a=ab.split(" ")[0] b=ab.split(" ")[1] print("{0} {1}".format(int(a*b),int((a+b)*2)))
Traceback (most recent call last): File "/tmp/tmpzuit_m8p/tmp973ybp13.py", line 1, in <module> ab=input() ^^^^^^^ EOFError: EOF when reading a line
s546299386
p02389
u870970010
1555693221
Python
Python3
py
Runtime Error
0
0
96
ab=input() a=ab.split(' ')[0] b=ab.split(' ')[1] print("{0} {1}".format(int(a*b),int((a+b)*2)))
Traceback (most recent call last): File "/tmp/tmp73gfp57a/tmpjpkk084b.py", line 1, in <module> ab=input() ^^^^^^^ EOFError: EOF when reading a line
s643079602
p02389
u870970010
1555693266
Python
Python3
py
Runtime Error
0
0
94
ab=input() a=ab.split(' ')[0] b=ab.split(' ')[1] s=a*b l=(a+b)*2 print("{0} {1}".format(s,l))
Traceback (most recent call last): File "/tmp/tmpnlmqb56i/tmponqpt0ja.py", line 1, in <module> ab=input() ^^^^^^^ EOFError: EOF when reading a line
s060164142
p02389
u118601639
1555834484
Python
Python3
py
Runtime Error
0
0
49
A,B=map(int(input().split())) print(A*B,(A+B)*2)
Traceback (most recent call last): File "/tmp/tmpj_1vr3u1/tmpi217mvhc.py", line 1, in <module> A,B=map(int(input().split())) ^^^^^^^ EOFError: EOF when reading a line
s887229899
p02389
u651717882
1555870718
Python
Python3
py
Runtime Error
0
0
59
a = float(input()) b =float(input()) print(a+b) print(a*b)
Traceback (most recent call last): File "/tmp/tmp977p6xha/tmpzcbc1cia.py", line 1, in <module> a = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s990187892
p02389
u651717882
1555870743
Python
Python3
py
Runtime Error
0
0
53
a = float(input()) b =float(input()) print(a+b,a*b)
Traceback (most recent call last): File "/tmp/tmp8zrthg_x/tmpo4ihxhpl.py", line 1, in <module> a = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s697691911
p02389
u651717882
1555870830
Python
Python3
py
Runtime Error
0
0
54
a = float(input()) b =float(input()) print(a+b,a*b)
Traceback (most recent call last): File "/tmp/tmpdzcxjyr0/tmpviw3ucei.py", line 1, in <module> a = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s800141642
p02389
u651717882
1555870853
Python
Python3
py
Runtime Error
0
0
50
a = int(input()) b =int(input()) print(a+b,a*b)
Traceback (most recent call last): File "/tmp/tmp2509gfdr/tmpx7m10_tf.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s459716633
p02389
u651717882
1555871037
Python
Python3
py
Runtime Error
0
0
55
a = float(input()) b = float(input()) print(a+b*2,a*b)
Traceback (most recent call last): File "/tmp/tmpctj4cvdu/tmpzdzqsnhm.py", line 1, in <module> a = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s483705634
p02389
u651717882
1555871065
Python
Python3
py
Runtime Error
0
0
55
a = float(input()) b = float(input()) print(2*a+b,a*b)
Traceback (most recent call last): File "/tmp/tmpv8f_jh2c/tmp5sxdiru0.py", line 1, in <module> a = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s835679159
p02389
u651717882
1555871080
Python
Python3
py
Runtime Error
0
0
51
a = int(input()) b = int(input()) print(2*a+b,a*b)
Traceback (most recent call last): File "/tmp/tmp64eyn9f6/tmpromrqpap.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s019923509
p02389
u651717882
1555871098
Python
Python3
py
Runtime Error
0
0
17
print(2*a+b,a*b)
Traceback (most recent call last): File "/tmp/tmpvf18q0jt/tmpxuyl21b9.py", line 1, in <module> print(2*a+b,a*b) ^ NameError: name 'a' is not defined
s144346574
p02389
u651717882
1555871191
Python
Python3
py
Runtime Error
0
0
51
a = int(input()) b = int(input()) print(2*a+b,a*b)
Traceback (most recent call last): File "/tmp/tmptffndmtu/tmp2e2408tq.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s121961826
p02389
u651717882
1555871971
Python
Python3
py
Runtime Error
0
0
50
a,b = map(int,input(),sprit()) print(a*b,2*(a+b))
Traceback (most recent call last): File "/tmp/tmp2volmkbb/tmpzwzwi6b4.py", line 1, in <module> a,b = map(int,input(),sprit()) ^^^^^^^ EOFError: EOF when reading a line
s938838058
p02389
u651717882
1555871993
Python
Python3
py
Runtime Error
0
0
50
a,b = map(int,input(),split()) print(a*b,2*(a+b))
Traceback (most recent call last): File "/tmp/tmp9ov8q4ys/tmpyhdj7sfy.py", line 1, in <module> a,b = map(int,input(),split()) ^^^^^^^ EOFError: EOF when reading a line
s260189301
p02389
u651717882
1555872552
Python
Python3
py
Runtime Error
0
0
52
a,b = map(int(),input().split()) print(a*b,2*(a+b))
Traceback (most recent call last): File "/tmp/tmphn2uijod/tmpd5jbjpdb.py", line 1, in <module> a,b = map(int(),input().split()) ^^^^^^^ EOFError: EOF when reading a line
s916937624
p02389
u525395303
1555909153
Python
Python3
py
Runtime Error
0
0
113
for ( int i = 0; i < 4; i++ ){ for ( int j = 0; j < 8; j++ ){ cout << "#"; } cout << endl; }
File "/tmp/tmpfw1q5qi2/tmpp1q_7s5g.py", line 1 for ( int i = 0; i < 4; i++ ){ ^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s093529882
p02389
u800408401
1555909239
Python
Python3
py
Runtime Error
0
0
68
a=input() b=input() s=int(a)*int(b) t=int(a)*2+int(b)*2 print(s, t)
Traceback (most recent call last): File "/tmp/tmpd44gpvdb/tmpneay2u61.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s654676654
p02389
u800408401
1555909246
Python
Python3
py
Runtime Error
0
0
68
a=input() b=input() s=int(a)*int(b) t=int(a)*2+int(b)*2 print(s, t)
Traceback (most recent call last): File "/tmp/tmp5x9jqvjs/tmp_q_jofan.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s378161274
p02389
u800408401
1555909319
Python
Python3
py
Runtime Error
0
0
72
a=input() b=input() s=int(a)*int(b) t=(int(a)*2)+(int(b)*2) print(s, t)
Traceback (most recent call last): File "/tmp/tmp5nbeqnfy/tmpujo3ymyz.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s387188464
p02389
u800408401
1555909347
Python
Python3
py
Runtime Error
0
0
68
a=input() b=input() s=int(a)*int(b) t=(int(a)+int(b))*2 print(s, t)
Traceback (most recent call last): File "/tmp/tmp0yo7ypwj/tmpclbtqgz8.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s029631799
p02389
u654661069
1555909535
Python
Python3
py
Runtime Error
0
0
93
x = raw_input().split() y = map(int,x) a = y[0] b = y[1] c = a*b d = (a+b)*2 print c, d
File "/tmp/tmp305t5lag/tmp6vc4h1nf.py", line 12 print c, d ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s341585953
p02389
u525395303
1555909600
Python
Python3
py
Runtime Error
0
0
108
#coding: UTF-8 x = raw_input().split() y = map(int,x) a = y[0] b = y[1] c = a*b d = (a+b)*2 print c, d
File "/tmp/tmp3o0qldz2/tmp0eek5h0a.py", line 13 print c, d ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s334150238
p02389
u607723579
1555910022
Python
Python3
py
Runtime Error
0
0
59
a, b=map(int, input().split()) print(r, l) r=a*b l=2*(a+b)
Traceback (most recent call last): File "/tmp/tmp3z48vws4/tmpleqcjukk.py", line 1, in <module> a, b=map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s434399165
p02389
u607723579
1555910039
Python
Python3
py
Runtime Error
0
0
59
a, b=map(int, input().split()) print(r, l) r=a*b l=2*(a+b)
Traceback (most recent call last): File "/tmp/tmp1j15wu8y/tmpgtzb0c2x.py", line 1, in <module> a, b=map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s419552884
p02389
u607723579
1555910069
Python
Python3
py
Runtime Error
0
0
59
a, b=map(int, input().split()) print(r, l) r=a*b l=2*(a+b)
Traceback (most recent call last): File "/tmp/tmpbdun7ug1/tmp4murr6nr.py", line 1, in <module> a, b=map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s089105509
p02389
u654661069
1555910079
Python
Python
py
Runtime Error
0
0
70
a, b= map(int, input().split()) c = (a*b) d = (a+b)*2 print( c, d)
Traceback (most recent call last): File "/tmp/tmp4ht1ch_a/tmpq7ft77ab.py", line 1, in <module> a, b= map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s073928170
p02389
u525395303
1555910127
Python
Python3
py
Runtime Error
0
0
3
hj
Traceback (most recent call last): File "/tmp/tmp1uh7nklz/tmp8fjpccyi.py", line 1, in <module> hj NameError: name 'hj' is not defined
s323883896
p02389
u586792237
1555910139
Python
Python3
py
Runtime Error
0
0
66
x, y = map(int, input().split()) x = (a+b)*2 y = a*b print(y, x)
Traceback (most recent call last): File "/tmp/tmp6gkb_x5a/tmpnxyjfgnd.py", line 1, in <module> x, y = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s876659036
p02389
u586792237
1555910156
Python
Python3
py
Runtime Error
0
0
66
x, y = map(int, input().split()) x = (a+b)*2 y = a*b print(y, x)
Traceback (most recent call last): File "/tmp/tmp1s_jznwx/tmpl9he6k6w.py", line 1, in <module> x, y = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s597086787
p02389
u495152850
1555910202
Python
Python3
py
Runtime Error
0
0
73
a, b = map(int, input().split()) print(x, y) x = a * b y = a + a + b + b
Traceback (most recent call last): File "/tmp/tmpnn5pep6g/tmp9eay9wgi.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s917571068
p02389
u586792237
1555910239
Python
Python3
py
Runtime Error
0
0
66
x, y = map(int, input().split()) x = a*b y = (a+b)*2 print(x, y)
Traceback (most recent call last): File "/tmp/tmptgann9ds/tmpc2j60vg1.py", line 1, in <module> x, y = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s450586896
p02389
u586792237
1555910279
Python
Python3
py
Runtime Error
0
0
66
x, y = map(int, input().split()) x = a*b y = (a+b)*2 print(x, y)
Traceback (most recent call last): File "/tmp/tmpdset_ln6/tmpthoamnbt.py", line 1, in <module> x, y = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s995185103
p02389
u804558166
1555910834
Python
Python3
py
Runtime Error
0
0
82
x=int(input()) print(x/3600, ':', (x-x/3600)/60, ':', x-{(x-x/3600)/60}, sep='')
Traceback (most recent call last): File "/tmp/tmpxnvbelr3/tmpab79qch1.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s752966852
p02389
u804558166
1555910921
Python
Python3
py
Runtime Error
0
0
88
x=int(input()) print(x//3600, ':', (x-x//3600)//60, ':', x-{(x-x//3600)//60}, sep='')
Traceback (most recent call last): File "/tmp/tmp8ltci_91/tmp0cjhy62l.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s625832417
p02389
u227363693
1555912717
Python
Python3
py
Runtime Error
0
0
78
a = input() b = input() a = int(a) b = int(b) print(a*b, " ", (2*a)+(2*b))
Traceback (most recent call last): File "/tmp/tmpx82drriz/tmpe4vnqhp5.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s105971401
p02389
u227363693
1555912741
Python
Python3
py
Runtime Error
0
0
78
a = input() b = input() a = int(a) b = int(b) print(a*b, " ", (2*a)+(2*b))
Traceback (most recent call last): File "/tmp/tmphvjsub60/tmpb044qm8q.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s031034316
p02389
u322138661
1555915504
Python
Python3
py
Runtime Error
0
0
88
a=int(input()) b=int(input()) area=a*b lap_length=2*a+2*b print(area) print(lap_length)
Traceback (most recent call last): File "/tmp/tmpj4g6wvx_/tmpkk036g8n.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s082269926
p02389
u322138661
1555915730
Python
Python3
py
Runtime Error
0
0
82
a=int(input()) b=int(input()) area=a*b lap_length=2*a+2*b print(area,lap_length)
Traceback (most recent call last): File "/tmp/tmpm1ztyxw6/tmpjxrcos82.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s890388577
p02389
u349668666
1556009201
Python
Python3
py
Runtime Error
0
0
57
n=int(input().split()) a=n[0] b=n[1] S=a*b L=(2*a)+(2*b)
Traceback (most recent call last): File "/tmp/tmpq6nasizf/tmplmxpfnqq.py", line 1, in <module> n=int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s073598086
p02389
u349668666
1556009234
Python
Python3
py
Runtime Error
0
0
70
n=int(input().split()) a=n[0] b=n[1] S=a*b L=(2*a)+(2*b) print(S' 'L)
File "/tmp/tmp8kbwd3ue/tmp07mc_y5d.py", line 6 print(S' 'L) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s083980895
p02389
u349668666
1556009517
Python
Python3
py
Runtime Error
0
0
63
n,n1=input().split() a=n b=n1 S=a*b L=(2*a)+(2*b) print(S' 'L)
File "/tmp/tmp_141u2h0/tmpzh_8njvm.py", line 6 print(S' 'L) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s640843013
p02389
u349668666
1556010214
Python
Python3
py
Runtime Error
0
0
65
n=input().split() a=n[0] b=n[1] S=a*b L=(2*a)+(2*b) print(S' 'L)
File "/tmp/tmpqt8dxohk/tmp3ft7rpoc.py", line 6 print(S' 'L) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s983815510
p02389
u349668666
1556010391
Python
Python3
py
Runtime Error
0
0
65
n=input().split() a=n[0] b=n[1] S=a*b L=(2*a)+(2*b) print(S' 'L)
File "/tmp/tmpt34kylrv/tmp5i523oc7.py", line 6 print(S' 'L) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s909000267
p02389
u349668666
1556010504
Python
Python3
py
Runtime Error
0
0
69
n=input() s=n.split() a=s[0] b=s[1] S=a*b L=(2*a)+(2*b) print(S' 'L)
File "/tmp/tmpp0zuh77m/tmp6dvf9zre.py", line 7 print(S' 'L) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s269101870
p02389
u349668666
1556010529
Python
Python3
py
Runtime Error
0
0
74
n=input() s=int(n.split()) a=s[0] b=s[1] S=a*b L=(2*a)+(2*b) print(S' 'L)
File "/tmp/tmpf76whn8e/tmpzz9rs0_d.py", line 7 print(S' 'L) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s069005780
p02389
u349668666
1556010889
Python
Python3
py
Runtime Error
0
0
78
n=map(int,raw_input().split()) a=n[0] b=n[1] S=a*b L=(2*a)+(2*b) print(S' 'L)
File "/tmp/tmp30pnjgpz/tmpptugs7ip.py", line 6 print(S' 'L) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s730009272
p02389
u349668666
1556010924
Python
Python3
py
Runtime Error
0
0
78
n=map(int,raw_input().split()) a=n[0] b=n[1] S=a*b L=(2*a)+(2*b) print(S" "L)
File "/tmp/tmphj4ozcn0/tmp_ji79c0h.py", line 6 print(S" "L) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s292852229
p02389
u349668666
1556011073
Python
Python3
py
Runtime Error
0
0
94
n=map(int,raw_input().split()) a=n[0] b=n[1] S=[a*b,(2*a)+(2*b)] print(' '.join(map(str, S)))
Traceback (most recent call last): File "/tmp/tmpzxrnqgy5/tmph8jcn5f8.py", line 1, in <module> n=map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s713771296
p02389
u349668666
1556011157
Python
Python3
py
Runtime Error
0
0
86
n=map(int,raw_input().split()) a=n[0] b=n[1] print(a*b) print(' ') print((2*a)+(2*b))
Traceback (most recent call last): File "/tmp/tmp0qs9u7iq/tmpkb4jf_nl.py", line 1, in <module> n=map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s475681718
p02389
u349668666
1556011599
Python
Python3
py
Runtime Error
0
0
109
#cording; UTF-8 x = raw_input().split() y = map(int,x) a = y[0] b = y[1] S = a*b L = 2*(a+b) print(S' 'L)
File "/tmp/tmph8h6aqf7/tmp5geuc998.py", line 10 print(S' 'L) ^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s013840169
p02389
u349668666
1556011617
Python
Python3
py
Runtime Error
0
0
107
#cording; UTF-8 x = raw_input().split() y = map(int,x) a = y[0] b = y[1] S = a*b L = 2*(a+b) print S, L
File "/tmp/tmpgwc8680p/tmpmpeym3ux.py", line 10 print S, L ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s558550694
p02389
u349668666
1556011657
Python
Python3
py
Runtime Error
0
0
109
#cording; UTF-8 x = raw_input().split() y = map(int,x) a = y[0] b = y[1] s = a*b l = 2*(a+b) print( s, l)
Traceback (most recent call last): File "/tmp/tmpmq2uhjx6/tmph3jd6ccp.py", line 3, in <module> x = raw_input().split() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s475302788
p02389
u349668666
1556011669
Python
Python3
py
Runtime Error
0
0
108
#cording; UTF-8 x = raw_input().split() y = map(int,x) a = y[0] b = y[1] s = a*b l = 2*(a+b) print(s, l)
Traceback (most recent call last): File "/tmp/tmpa0fgecls/tmprf2j371o.py", line 3, in <module> x = raw_input().split() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s326397564
p02389
u349668666
1556011870
Python
Python3
py
Runtime Error
0
0
87
#cording; UTF-8 a,b=[int(x) for x in input().split()] S = a*b L = 2*(a+b) print(s, l)
Traceback (most recent call last): File "/tmp/tmpf0tq52hw/tmp96kytf0m.py", line 2, in <module> a,b=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s779097304
p02389
u883436882
1556071501
Python
Python
py
Runtime Error
0
0
347
width = float(input('Please Enter the Width of a Rectangle: ')) height = float(input('Please Enter the Height of a Rectangle: ')) # calculate the area of rectangle Area = width * height # calculate the Perimeter Perimeter = 2 * (width + height) print("\n Area of a Rectangle is: %.2f" %Area) print(" Perimeter of Rectangle is: %.2f" %Perimeter)
Traceback (most recent call last): File "/tmp/tmpbbu2asp1/tmp3l_pvvxe.py", line 1, in <module> width = float(input('Please Enter the Width of a Rectangle: ')) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ EOFError: EOF when reading a line
Please Enter the Width of a Rectangle:
s623809581
p02389
u317990399
1556072150
Python
Python3
py
Runtime Error
0
0
145
def rect(a,b): return a*b, 2*(a+b) s = input() x = s.split() a = int(x[0]) b = int(x[1]) area,perimeter = rect(a,b) print(area, perimater)
Traceback (most recent call last): File "/tmp/tmpf1tefono/tmp0j8j55dk.py", line 3, in <module> s = input() ^^^^^^^ EOFError: EOF when reading a line
s608385624
p02389
u418789927
1556105269
Python
Python3
py
Runtime Error
0
0
48
a=int(input()) b=int(input()) print(a*b,2a+2b)
File "/tmp/tmpfsdr814m/tmp1xivo9nr.py", line 4 print(a*b,2a+2b) ^ SyntaxError: invalid decimal literal
s435715827
p02389
u136295375
1556111278
Python
Python3
py
Runtime Error
0
0
55
a=int(input()) b=int(input()) print(a*b +' '+ 2(a+b))
/tmp/tmpvidwdpkq/tmpop1qstwp.py:4: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? print(a*b +' '+ 2(a+b)) Traceback (most recent call last): File "/tmp/tmpvidwdpkq/tmpop1qstwp.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s878282463
p02389
u543618856
1556161580
Python
Python3
py
Runtime Error
0
0
74
s = input() x = s.split() a = int(x[0]) b = int(x[1]) print(a*b,2*(a+b)
File "/tmp/tmptvkrrg3z/tmpqe43ty8c.py", line 7 print(a*b,2*(a+b) ^ SyntaxError: '(' was never closed
s497747502
p02389
u543618856
1556161591
Python
Python3
py
Runtime Error
0
0
74
s = input() x = s.split() a = int(x[0]) b = int(x[1]) print(a*b,2*(a+b)
File "/tmp/tmplw1gvskm/tmp01dmbxtx.py", line 7 print(a*b,2*(a+b) ^ SyntaxError: '(' was never closed
s840416190
p02389
u976156562
1556161740
Python
Python3
py
Runtime Error
0
0
112
# problem 1=C Rectangle s = input() x = s.split() a = int(x[0]) b = int(x[1]) print (a*b,2*(a+b))
File "/tmp/tmpdky2w5un/tmpv_e5c_ar.py", line 3 s = input() IndentationError: unexpected indent
s670023520
p02389
u976156562
1556161793
Python
Python3
py
Runtime Error
0
0
112
# problem 1=C Rectangle s = input() x = s.split() a = int(x[0]) b = int(x[1]) print (a*b,2*(a+b))
File "/tmp/tmpdtbdkm3r/tmphf31qe43.py", line 3 s = input() IndentationError: unexpected indent
s964986977
p02389
u976156562
1556162063
Python
Python3
py
Runtime Error
0
0
103
# problem 1=C Rectangle s = input() x = s.split() a = int(x[0]) b = int(x[1]) print (a*b,2*(a+b)
File "/tmp/tmpovr6t7z4/tmp_n1ffk2g.py", line 9 print (a*b,2*(a+b) ^ SyntaxError: '(' was never closed
s618587087
p02389
u327386274
1556359792
Python
Python3
py
Runtime Error
0
0
40
a,b = int(input()) print(a*b , 2*(a+b))
Traceback (most recent call last): File "/tmp/tmp6zuu6u_u/tmpr73wl4vl.py", line 1, in <module> a,b = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s331541413
p02389
u327386274
1556359814
Python
Python3
py
Runtime Error
0
0
45
a,b = int(input()) print(a*b) print(2*(a+b))
Traceback (most recent call last): File "/tmp/tmp15n0zful/tmpzms1am9x.py", line 1, in <module> a,b = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s922590154
p02389
u327386274
1556359978
Python
Python3
py
Runtime Error
0
0
54
a,b = map(int,input().split()) print(a*b+' '+2*(a+b))
Traceback (most recent call last): File "/tmp/tmp1byqhb4k/tmpxsp8v13r.py", line 1, in <module> a,b = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s917810390
p02389
u085967287
1556430533
Python
Python
py
Runtime Error
0
0
30
x=input() y=input() print x*y
File "/tmp/tmpo8rj3spj/tmpqdk0sqox.py", line 3 print x*y ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s858282912
p02389
u630518143
1556501318
Python
Python3
py
Runtime Error
0
0
104
nums = input().split() x = nums[0] * nums[1] y = nums[0] * 2 + nums[1] * 2 print(str(x) + " " + str(y))
Traceback (most recent call last): File "/tmp/tmp_an6pwug/tmp349f3136.py", line 1, in <module> nums = input().split() ^^^^^^^ EOFError: EOF when reading a line
s325145355
p02389
u610816226
1556622955
Python
Python3
py
Runtime Error
0
0
67
n = input() a, b = n.split() x = a * b y = 2 * (a + b) print(x, y)
Traceback (most recent call last): File "/tmp/tmp457_0j12/tmpbbb0d_bl.py", line 1, in <module> n = input() ^^^^^^^ EOFError: EOF when reading a line
s485129018
p02389
u610816226
1556622976
Python
Python3
py
Runtime Error
0
0
72
n = input() a, b = int(n.split()) x = a * b y = 2 * (a + b) print(x, y)
Traceback (most recent call last): File "/tmp/tmplml1yip2/tmpfrggm7a7.py", line 1, in <module> n = input() ^^^^^^^ EOFError: EOF when reading a line
s265660390
p02389
u340991036
1558938193
Python
Python3
py
Runtime Error
0
0
61
a, b = map(int, input.split()) print(a * b, a * 2 + b * 2)
Traceback (most recent call last): File "/tmp/tmpaw26g8bo/tmpjx9tsuxx.py", line 1, in <module> a, b = map(int, input.split()) ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s134648460
p02389
u967890409
1559005751
Python
Python3
py
Runtime Error
0
0
86
import sys data=int(input()) data2=int(input()) print((data*data2), 2*(data+data2))
Traceback (most recent call last): File "/tmp/tmpj9pbsjqp/tmpx76hftek.py", line 3, in <module> data=int(input()) ^^^^^^^ EOFError: EOF when reading a line