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
s745304602
p02389
u314018844
1484659346
Python
Python3
py
Runtime Error
0
0
142
a = int(input()) b = int(input()) if 1<=a and a<= 100 and 1<=b and b<=100: area = a*b cir = (a+b)*2 print(area,cir) else: print("Error!")
Traceback (most recent call last): File "/tmp/tmpvhwsa1ca/tmp2hz6p86v.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s177032940
p02389
u314018844
1484659403
Python
Python3
py
Runtime Error
0
0
75
a = int(input()) b = int(input()) area = a*b cir = (a+b)*2 print(area,cir)
Traceback (most recent call last): File "/tmp/tmpt8pmmqp9/tmpqpdt2sax.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s369335849
p02389
u314018844
1484659869
Python
Python3
py
Runtime Error
0
0
76
a = int(input()) b = int(input()) area = a*b cir = (a+b)*2 print(area, cir)
Traceback (most recent call last): File "/tmp/tmpzmap08s9/tmpvaa67hh2.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s392719054
p02389
u276050131
1484757684
Python
Python3
py
Runtime Error
0
0
72
l = map(int,input().split) print(l[0] * l[1]) print(l[0] * 2 + l[1] * 2)
Traceback (most recent call last): File "/tmp/tmpt70ck_ob/tmpw7kfio0m.py", line 1, in <module> l = map(int,input().split) ^^^^^^^ EOFError: EOF when reading a line
s276710291
p02389
u276050131
1484757754
Python
Python3
py
Runtime Error
0
0
73
l = map(int,input().split) print(l[0] * l[1]) print( l[0] * 2 + l[1] * 2)
Traceback (most recent call last): File "/tmp/tmpbes2cr5i/tmp2upavn05.py", line 1, in <module> l = map(int,input().split) ^^^^^^^ EOFError: EOF when reading a line
s511494951
p02389
u276050131
1484757766
Python
Python3
py
Runtime Error
0
0
78
l = map(int,input().split) print(l[0] * l[1]) print(" " + l[0] * 2 + l[1] * 2)
Traceback (most recent call last): File "/tmp/tmpgmdc3mvc/tmps_r8n9td.py", line 1, in <module> l = map(int,input().split) ^^^^^^^ EOFError: EOF when reading a line
s858230128
p02389
u276050131
1484757837
Python
Python3
py
Runtime Error
0
0
74
l = map(int,input().split()) print(l[0] * l[1]) print(l[0] * 2 + l[1] * 2)
Traceback (most recent call last): File "/tmp/tmp2s2ric9b/tmprvcs6u0d.py", line 1, in <module> l = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s222716435
p02389
u276050131
1484758038
Python
Python3
py
Runtime Error
0
0
72
l = map(int,raw_input().split()) print(l[0] * l[1], l[0] * 2 + l[1] * 2)
Traceback (most recent call last): File "/tmp/tmpty70qzpk/tmp0uf8lvob.py", line 1, in <module> l = map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s321345224
p02389
u276050131
1484758210
Python
Python3
py
Runtime Error
0
0
105
l = map(int,raw_input().split()) s = l[0] * l[1] shu = l[0] * 2 + l[1] * 2 print(str(s) + " " + str(shu))
Traceback (most recent call last): File "/tmp/tmphb_3ft3n/tmpakzanq1t.py", line 1, in <module> l = map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s305283028
p02389
u276050131
1484758245
Python
Python3
py
Runtime Error
0
0
95
l = map(int,raw_input().split()) s = l[0] * l[1] shu = l[0] * 2 + l[1] * 2 print(s + " " + shu)
Traceback (most recent call last): File "/tmp/tmpsrij5la3/tmps5xvjotx.py", line 1, in <module> l = map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s019322029
p02389
u276050131
1484758535
Python
Python3
py
Runtime Error
0
0
133
l = map(int,raw_input().split()) s = l[0] * l[1] shu = l[0] * 2 + l[1] * 2 fmt = "{s} {shu}" s = fmt.format(s = s,shu = shu) print(s)
Traceback (most recent call last): File "/tmp/tmpi_kfvncx/tmpskwy78h9.py", line 1, in <module> l = map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s774009258
p02389
u276050131
1484758868
Python
Python3
py
Runtime Error
0
0
133
a = map(int,raw_input().split()) s = l[0] * l[1] shu = l[0] * 2 + l[1] * 2 fmt = "{s} {shu}" s = fmt.format(s = s,shu = shu) print(s)
Traceback (most recent call last): File "/tmp/tmp8b6n19re/tmp2_y8zh7y.py", line 1, in <module> a = map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s593612413
p02389
u276050131
1484759069
Python
Python3
py
Runtime Error
0
0
123
a,b = map(int,raw_input().split()) s = a * b shu = a * 2 + b * 2 fmt = "{s} {shu}" s = fmt.format(s = s,shu = shu) print(s)
Traceback (most recent call last): File "/tmp/tmpsmakei54/tmpzwx62h6m.py", line 1, in <module> a,b = map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s678783008
p02389
u276050131
1484759086
Python
Python3
py
Runtime Error
0
0
123
a,b = map(int,raw_input().split()) s = a * b shu = a * 2 + b * 2 fmt = "{s} {shu}" s = fmt.format(s = s,shu = shu) print(s)
Traceback (most recent call last): File "/tmp/tmpjhe6m4k0/tmp6ofi9qje.py", line 1, in <module> a,b = map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s953230754
p02389
u276050131
1484759342
Python
Python3
py
Runtime Error
0
0
110
a,b = input().split() s = a * b shu = a * 2 + b * 2 fmt = "{s} {shu}" s = fmt.format(s = s,shu = shu) print(s)
Traceback (most recent call last): File "/tmp/tmp6octro6q/tmp7qivlf6m.py", line 1, in <module> a,b = input().split() ^^^^^^^ EOFError: EOF when reading a line
s124536699
p02389
u276050131
1484759353
Python
Python
py
Runtime Error
0
0
110
a,b = input().split() s = a * b shu = a * 2 + b * 2 fmt = "{s} {shu}" s = fmt.format(s = s,shu = shu) print(s)
Traceback (most recent call last): File "/tmp/tmph8b167_8/tmp6dq4y6k8.py", line 1, in <module> a,b = input().split() ^^^^^^^ EOFError: EOF when reading a line
s111702190
p02389
u133610255
1484829720
Python
Python3
py
Runtime Error
0
0
82
i = map(int, raw_input().split()) x = i[0] * i[1] y = (i[0] + i[1]) * 2 print(x y)
File "/tmp/tmpuwhl05lt/tmpwvtzp2jq.py", line 4 print(x y) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s349980496
p02389
u133610255
1484829738
Python
Python3
py
Runtime Error
0
0
88
i = map(int, raw_input().split()) x = i[0] * i[1] y = (i[0] + i[1]) * 2 print(x+ " "+ y)
Traceback (most recent call last): File "/tmp/tmpnqs_t8ev/tmpspar98bv.py", line 1, in <module> i = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s730240852
p02389
u133610255
1484829941
Python
Python3
py
Runtime Error
0
0
101
i = map(int, raw_input().split()) x = i[0] * i[1] y = (i[0] + i[1]) * 2 z = " ".join([x,y]); print(z)
Traceback (most recent call last): File "/tmp/tmpm26w0v2e/tmpw7aa1kb8.py", line 1, in <module> i = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s201960840
p02389
u314018844
1484958573
Python
Python3
py
Runtime Error
0
0
120
a = int(input()) b = int(input()) if 1<=a and a<= 100 and 1<=b and b<=100: area = a*b cir = (a+b)*2 print(area, cir)
Traceback (most recent call last): File "/tmp/tmp9w0vy7_c/tmpdp54wzoc.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s792323951
p02389
u314018844
1484958739
Python
Python3
py
Runtime Error
0
0
141
a = int(input()) b = int(input()) if 1<=a and a<= 100 and 1<=b and b<=100: area = a*b cir = (a+b)*2 print(area, cir) else: print("error")
File "/tmp/tmpzoznveu1/tmpxye2ei7v.py", line 9 print("error") ^ IndentationError: expected an indented block after 'else' statement on line 8
s182707078
p02389
u519227872
1485260641
Python
Python
py
Runtime Error
0
0
87
a,b = raw_input().split(" ") a = int(a) b = int(b) print str(a*b) + " " str(2*a + 2*b)
File "/tmp/tmpif0uszli/tmpwvy0i0ld.py", line 4 print str(a*b) + " " str(2*a + 2*b) ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s803433365
p02389
u104171359
1485925671
Python
Python3
py
Runtime Error
0
0
175
#!usr/bin/env python3 def rect(a, b): return str(a*b) + ' ' + str((a+b)*2) def main(): print(rect(int(input()), int(input()))) if __name__ == '__main__': main()
Traceback (most recent call last): File "/tmp/tmpr4ggofe6/tmp07xewmko.py", line 10, in <module> main() File "/tmp/tmpr4ggofe6/tmp07xewmko.py", line 7, in main print(rect(int(input()), int(input()))) ^^^^^^^ EOFError: EOF when reading a line
s840691072
p02389
u104171359
1485925810
Python
Python3
py
Runtime Error
0
0
34
print(str(a*b) + ' ' str((a+b)*2))
File "/tmp/tmpaprstutj/tmp_wu4dqcf.py", line 1 print(str(a*b) + ' ' str((a+b)*2)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s934513073
p02389
u048361305
1486367385
Python
Python3
py
Runtime Error
0
0
47
x,y=map(int,input(),split()) print(a*b,a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpqtr4dxfe/tmph0cym3n4.py", line 1, in <module> x,y=map(int,input(),split()) ^^^^^^^ EOFError: EOF when reading a line
s784316670
p02389
u048361305
1486367471
Python
Python3
py
Runtime Error
0
0
47
x,y=map(int,input().split()) print(x*b,x*2+y*2)
Traceback (most recent call last): File "/tmp/tmp3jupzfei/tmp3hej40b9.py", line 1, in <module> x,y=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s535688968
p02389
u731896389
1486387097
Python
Python3
py
Runtime Error
0
0
40
x=int(input()) y=int(input()) print(x*y)
Traceback (most recent call last): File "/tmp/tmp0qjwt4ms/tmpx7bqub3m.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s879755332
p02389
u644708764
1486476773
Python
Python
py
Runtime Error
0
0
70
l=raw_input().split(" ") a,b=int(l[0]),int(l[1]) print a*b+" "+2*a+2*b
File "/tmp/tmpcte28iyd/tmpamn2zla5.py", line 3 print a*b+" "+2*a+2*b ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s041013566
p02389
u052758509
1486710454
Python
Python
py
Runtime Error
0
0
214
def area(ls): return ls[0] * ls[1] def per(ls): return (2 * ls[0]) + (2 * ls[1]) if __name__ == '__main__': data = list(map(int, input().split())) s = area(data) l = per(data) print(s, l)
Traceback (most recent call last): File "/tmp/tmpfr9wksbu/tmp0p_3lx2l.py", line 9, in <module> data = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s818365576
p02389
u158308386
1487079489
Python
Python3
py
Runtime Error
0
0
174
input_str = input() split_list = input_str.split() print((int(split_list[0]) * int(split_list[1]),) print(" ",) print((int(split_list[0]) * 2 + int(split_list[1]) * 2))
File "/tmp/tmpcra1uaj_/tmpimkkedby.py", line 5 print((int(split_list[0]) * int(split_list[1]),) ^ SyntaxError: '(' was never closed
s437983617
p02389
u158308386
1487079630
Python
Python3
py
Runtime Error
0
0
161
input_str = input() split_list = input_str.split() print((int(split_list[0]) * int(split_list[1]),) print((int(split_list[0]) * 2 + int(split_list[1]) * 2))
File "/tmp/tmpnn1xt3px/tmpzprp_439.py", line 5 print((int(split_list[0]) * int(split_list[1]),) ^ SyntaxError: '(' was never closed
s497209004
p02389
u158308386
1487079928
Python
Python3
py
Runtime Error
0
0
152
input_str = input() split_list = input_str.split() print((int(split_list[0]) * int(split_list[1]),(int(split_list[0]) * 2 + int(split_list[1]) * 2))
File "/tmp/tmp62g28k3o/tmpobfosy1m.py", line 5 print((int(split_list[0]) * int(split_list[1]),(int(split_list[0]) * 2 + int(split_list[1]) * 2)) ^ SyntaxError: '(' was never closed
s816507142
p02389
u548155360
1487144887
Python
Python3
py
Runtime Error
0
0
45
a,b = int(input().split()) M = a * b print(M)
Traceback (most recent call last): File "/tmp/tmpp0aiv78b/tmp2aicsjbd.py", line 1, in <module> a,b = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s270699289
p02389
u548155360
1487144939
Python
Python3
py
Runtime Error
0
0
45
a,b = int(input()).split() M = a * b print(M)
Traceback (most recent call last): File "/tmp/tmp64v85q24/tmp3v71trs8.py", line 1, in <module> a,b = int(input()).split() ^^^^^^^ EOFError: EOF when reading a line
s151845916
p02389
u548155360
1487144971
Python
Python3
py
Runtime Error
0
0
40
a,b = input().split() M = a * b print(M)
Traceback (most recent call last): File "/tmp/tmpuqn5os4z/tmpos2liw6w.py", line 1, in <module> a,b = input().split() ^^^^^^^ EOFError: EOF when reading a line
s053891710
p02389
u548155360
1487145004
Python
Python3
py
Runtime Error
0
0
41
a, b = input().split() M = a * b print(M)
Traceback (most recent call last): File "/tmp/tmpdnpyo0dz/tmpxjdzx47t.py", line 1, in <module> a, b = input().split() ^^^^^^^ EOFError: EOF when reading a line
s302166262
p02389
u726789377
1487320607
Python
Python3
py
Runtime Error
0
0
93
data = input().split() a = data[0] b = data[1] print (int(a) * int(b), 2 * (int(a) + int (b))
File "/tmp/tmpq_8mfi6v/tmp_oz4__96.py", line 4 print (int(a) * int(b), 2 * (int(a) + int (b)) ^ SyntaxError: '(' was never closed
s081134996
p02389
u024715419
1487921323
Python
Python3
py
Runtime Error
0
0
69
l = input().split() print(int(l[0])*int(l[1]),2*int(l[0])+2*int(l[1])
File "/tmp/tmpspl149m1/tmpb1z1uru4.py", line 2 print(int(l[0])*int(l[1]),2*int(l[0])+2*int(l[1]) ^ SyntaxError: '(' was never closed
s059816583
p02389
u024715419
1488123285
Python
Python3
py
Runtime Error
0
0
45
ab=input() print(ab[0]*ab[1],ab[0]*2+ab[1]*2)
Traceback (most recent call last): File "/tmp/tmp4xav8vf2/tmpk420jvhs.py", line 1, in <module> ab=input() ^^^^^^^ EOFError: EOF when reading a line
s502496870
p02389
u775160104
1488186601
Python
Python3
py
Runtime Error
0
0
60
(a, b) = list(map(int, input().split()) print (a*b, 2(a+b))
File "/tmp/tmphn07omer/tmpu9bs9wkb.py", line 1 (a, b) = list(map(int, input().split()) ^ SyntaxError: '(' was never closed
s930209271
p02389
u511962207
1488234932
Python
Python3
py
Runtime Error
0
0
84
a0 = input() b0 = input() a = float(a0) b = float(b0) s=a*b l=2*a+2*b print(s l)
File "/tmp/tmp34e4zagy/tmp6bzzf3zp.py", line 11 print(s l) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s715854564
p02389
u511962207
1488234950
Python
Python3
py
Runtime Error
0
0
80
a0 = input() b0 = input() a = int(a0) b = int(b0) s=a*b l=2*a+2*b print(s l)
File "/tmp/tmpmlqb0379/tmp_81k0obd.py", line 11 print(s l) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s303218918
p02389
u511962207
1488234974
Python
Python3
py
Runtime Error
0
0
81
a0 = input() b0 = input() a = int(a0) b = int(b0) s=a*b l=2*a+2*b print(s +l)
Traceback (most recent call last): File "/tmp/tmpw9w7efj1/tmpb4hadyxl.py", line 1, in <module> a0 = input() ^^^^^^^ EOFError: EOF when reading a line
s803300368
p02389
u511962207
1488235567
Python
Python3
py
Runtime Error
0
0
61
a,b = n(int, input(), split()) s=a*b l=2*a+2*b print(s +l)
Traceback (most recent call last): File "/tmp/tmp8w6z6_vb/tmpdffmvcpj.py", line 1, in <module> a,b = n(int, input(), split()) ^ NameError: name 'n' is not defined
s371152651
p02389
u511962207
1488235669
Python
Python3
py
Runtime Error
0
0
83
a0, b0 = input(), input() a = int(a0) b = int(b0) ?? s=a*b l=2*a+2*b print(s +l)
File "/tmp/tmptm35opsd/tmp1lmed2d_.py", line 5 ?? ^ SyntaxError: invalid syntax
s902117471
p02389
u523743252
1488326092
Python
Python3
py
Runtime Error
0
0
121
input = list(map(int, input().split(' ')) a = input[0] b = input[1] x = a * b y = (a + b) * 2 print("{} {}".format(a, b))
File "/tmp/tmp8mgjmx1q/tmp66jhulkj.py", line 1 input = list(map(int, input().split(' ')) ^ SyntaxError: '(' was never closed
s995637886
p02389
u523743252
1488326124
Python
Python3
py
Runtime Error
0
0
134
input = list(map(lambda n: int(n), input().split(' ')) a = input[0] b = input[1] x = a * b y = (a + b) * 2 print("{} {}".format(a, b))
File "/tmp/tmpw8omv8lp/tmpow9stf9t.py", line 1 input = list(map(lambda n: int(n), input().split(' ')) ^ SyntaxError: '(' was never closed
s950871483
p02389
u746987146
1488333894
Python
Python
py
Runtime Error
0
0
59
a = int(raw_input()) b = int(raw_input()) print a*b,a*2+b*2
File "/tmp/tmp0x3t0lrc/tmpr9cpv_9y.py", line 3 print a*b,a*2+b*2 ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s319127718
p02389
u746987146
1488333988
Python
Python
py
Runtime Error
0
0
79
s = raw_input().rstrip.split(" ") a = int(s[0]) b = int(s[1]) print a*b,a*2+b*2
File "/tmp/tmpeq2oabqc/tmp_w6wz1qs.py", line 4 print a*b,a*2+b*2 ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s621285694
p02389
u156091054
1488675593
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/tmp804g5mgg/tmpwxb04efm.py", line 1, in <module> a, b = map(int, input(),split()) ^^^^^^^ EOFError: EOF when reading a line
s216866341
p02389
u868716420
1488923760
Python
Python3
py
Runtime Error
0
0
67
a, b = [temp for temp in input().split()] print(a * b, (a + b) * 2)
Traceback (most recent call last): File "/tmp/tmp5tvwhps_/tmp8augsw9_.py", line 1, in <module> a, b = [temp for temp in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s392474796
p02389
u209889426
1489668122
Python
Python3
py
Runtime Error
0
0
52
x=int(input()) y=int(input()) ans=2*x+2*y print(ans)
Traceback (most recent call last): File "/tmp/tmp920ujpjw/tmpj54khj6n.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s422307372
p02389
u209889426
1489668294
Python
Python3
py
Runtime Error
0
0
52
x=int(input()) y=int(input()) ans=2*x+2*y print(ans)
Traceback (most recent call last): File "/tmp/tmp0ycxbnxf/tmp8f1c3mw2.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s653410665
p02389
u209889426
1489668418
Python
Python3
py
Runtime Error
0
0
63
x=int(input()) y=int(input()) S=x*y L=2*x+2*y print(S) print(L)
Traceback (most recent call last): File "/tmp/tmp11efiyan/tmpgxyvtatb.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s417102333
p02389
u209889426
1489668579
Python
Python3
py
Runtime Error
0
0
72
x=int(input()) y=int(input()) S=x*y L=2*x+2*y print(S,end = "") print(L)
Traceback (most recent call last): File "/tmp/tmp6wtnf58a/tmpdta4aa4c.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s977796347
p02389
u275742248
1489757956
Python
Python3
py
Runtime Error
0
0
60
a, b = input().split(' ') print('{} {}'.format(a*b, 2(a+b)))
/tmp/tmplonqw0vg/tmpes_crbxb.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/tmplonqw0vg/tmpes_crbxb.py", line 1, in <module> a, b = input().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s997162006
p02389
u275742248
1489758318
Python
Python3
py
Runtime Error
0
0
70
x, y = map(int, input().split(' ')) print('{} {}'.format(a*b, 2(a+b)))
/tmp/tmpafbefouh/tmpy39riw0y.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/tmpafbefouh/tmpy39riw0y.py", line 1, in <module> x, y = map(int, input().split(' ')) ^^^^^^^ EOFError: EOF when reading a line
s662300249
p02389
u275742248
1489758396
Python
Python3
py
Runtime Error
0
0
70
a, b = map(int, input().split(' ')) print('{} {}'.format(a*b, 2(a+b)))
/tmp/tmp9r_l8d8t/tmpb46j6sws.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/tmp9r_l8d8t/tmpb46j6sws.py", line 1, in <module> a, b = map(int, input().split(' ')) ^^^^^^^ EOFError: EOF when reading a line
s789936515
p02389
u011621222
1489923600
Python
Python
py
Runtime Error
0
0
70
a=input() b=input() print a*b,2*(a+b) #jdjdjdjdjdksksowksakslslakslaks
File "/tmp/tmpcngqns9b/tmp_rw91sgi.py", line 3 print a*b,2*(a+b) ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s794668498
p02389
u011621222
1489924191
Python
Python
py
Runtime Error
0
0
61
a,b=input().split() aa=int(a) bb=int(b) print aa*bb,2*(aa+bb)
File "/tmp/tmphmm0x5yz/tmpm6niy4rj.py", line 4 print aa*bb,2*(aa+bb) ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s817152953
p02389
u249954942
1490343904
Python
Python3
py
Runtime Error
0
0
52
x, y = [int(i) for i in input.split(" ")] print(x*y)
Traceback (most recent call last): File "/tmp/tmpynssdmck/tmp4asda5vp.py", line 1, in <module> x, y = [int(i) for i in input.split(" ")] ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s552950738
p02389
u249954942
1490344239
Python
Python3
py
Runtime Error
0
0
93
input = [iint(i) for i in input().split(" ")] print(input[0]*input[1], input[0]*2+input[1]*2)
Traceback (most recent call last): File "/tmp/tmps6zze2bn/tmp3rjnxy3b.py", line 1, in <module> input = [iint(i) for i in input().split(" ")] ^^^^^^^ EOFError: EOF when reading a line
s074717450
p02389
u249954942
1490344362
Python
Python3
py
Runtime Error
0
0
94
x,y = [int(i) for i in input().split()] area = x*y length = (x*2)+(y*2) print(area+" "+length)
Traceback (most recent call last): File "/tmp/tmp60i45ilh/tmp81v9pcjp.py", line 1, in <module> x,y = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s637096596
p02389
u042882066
1490661989
Python
Python3
py
Runtime Error
0
0
70
items=int(input()) x,y=map(split( ), items) a=x*y b=2*x+2*y print(a,b)
Traceback (most recent call last): File "/tmp/tmpq4tvjwne/tmpqrpjwg53.py", line 1, in <module> items=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s396155306
p02389
u042882066
1490661990
Python
Python3
py
Runtime Error
0
0
70
items=int(input()) x,y=map(split( ), items) a=x*y b=2*x+2*y print(a,b)
Traceback (most recent call last): File "/tmp/tmpmpg285s1/tmpoo_zbnxt.py", line 1, in <module> items=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s603003731
p02389
u042882066
1490662286
Python
Python3
py
Runtime Error
0
0
81
a,b=map(int, input().split(" ") area=a*b perimeter=2*(a+b) print(area, perimeter)
File "/tmp/tmpn8rligt5/tmpa2yrtb7_.py", line 1 a,b=map(int, input().split(" ") ^ SyntaxError: '(' was never closed
s291647382
p02389
u042882066
1490662286
Python
Python3
py
Runtime Error
0
0
81
a,b=map(int, input().split(" ") area=a*b perimeter=2*(a+b) print(area, perimeter)
File "/tmp/tmpfc_3qz2g/tmpuflzmhui.py", line 1 a,b=map(int, input().split(" ") ^ SyntaxError: '(' was never closed
s659718613
p02389
u042882066
1490662344
Python
Python3
py
Runtime Error
0
0
86
a, b = map(int, input().split( ) area = a*b perimeter = 2*(a+b) print(area, perimeter)
File "/tmp/tmpy5o08mjl/tmp_owddrgx.py", line 1 a, b = map(int, input().split( ) ^ SyntaxError: '(' was never closed
s605569464
p02389
u822442916
1490748587
Python
Python3
py
Runtime Error
0
0
35
a,b=int(input()) print(a*b,(a+b)*2)
Traceback (most recent call last): File "/tmp/tmpt6rhqq58/tmpxuf65n47.py", line 1, in <module> a,b=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s207843255
p02389
u822442916
1490749327
Python
Python3
py
Runtime Error
0
0
48
a=int(input()) b=int(input()) print(a*b,(a+b)*2)
Traceback (most recent call last): File "/tmp/tmp2xus7s5l/tmpc2l9kg3d.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s865714663
p02389
u462831976
1490772910
Python
Python3
py
Runtime Error
0
0
77
a, b = list(map(int, input().split()) s = a * b l = 2 * a + 2 * b print(s, l)
File "/tmp/tmp4d0fyftt/tmp_9rbaf7r.py", line 1 a, b = list(map(int, input().split()) ^ SyntaxError: '(' was never closed
s537040424
p02389
u606989659
1490780557
Python
Python3
py
Runtime Error
0
0
93
a = int(input()) b = int(input()) if 1 <= a <= 100 1 <= b <= 100: c = a * b print(c)
File "/tmp/tmpdiuh_jmq/tmpmz5jqzee.py", line 3 if 1 <= a <= 100 1 <= b <= 100: ^ SyntaxError: invalid syntax
s482103550
p02389
u606989659
1490780763
Python
Python3
py
Runtime Error
0
0
118
a = int(input()) b = int(input()) if 1 <= a <= 100 and 1 <= b <= 100: c = a * b d = 2(a + b) print(c''d)
File "/tmp/tmpp9v4s3hn/tmp0052labg.py", line 6 print(c''d) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s865947201
p02389
u606989659
1490781135
Python
Python3
py
Runtime Error
0
0
114
x = input() a, b = x.split() if 1 <= a <= 100 and 1 <= b <= 100: c = a * b d = 2(a + b) print(c''d)
File "/tmp/tmp9t29c1sd/tmpoabv9vuk.py", line 6 print(c''d) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s753555130
p02389
u606989659
1490785930
Python
Python3
py
Runtime Error
0
0
66
a,b = map(int,input().split()) c = a * b d = 2(a + b) print(c''d)
File "/tmp/tmpahxv64jq/tmpesd7wvlf.py", line 4 print(c''d) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s614251552
p02389
u606989659
1490786269
Python
Python3
py
Runtime Error
0
0
79
a,b = map(int,input().split()) c = a * b d = 2 * (a + b) print(str(c)''str(d) )
File "/tmp/tmpqog06bh3/tmp2sgiwsk0.py", line 4 print(str(c)''str(d) ) ^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s668001769
p02389
u300641790
1490795745
Python
Python3
py
Runtime Error
0
0
57
a,b = int(input().split()) S = a*b L = 2*(a+b) print(x,y)
Traceback (most recent call last): File "/tmp/tmpd3funh5v/tmpq_f_ef99.py", line 1, in <module> a,b = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s548814636
p02389
u300641790
1490795811
Python
Python3
py
Runtime Error
0
0
57
a,b = int(input().split()) S = a*b L = 2*(a+b) print(x y)
File "/tmp/tmpmk37ne1y/tmpp1wnrcmw.py", line 4 print(x y) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s733054442
p02389
u300641790
1490795933
Python
Python3
py
Runtime Error
0
0
63
a,b = int(input().split()) S = a*b L = 2*(a+b) print('S' + 'L')
Traceback (most recent call last): File "/tmp/tmp2kzje6bh/tmpymuk4joi.py", line 1, in <module> a,b = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s394963341
p02389
u300641790
1490796024
Python
Python3
py
Runtime Error
0
0
71
a,b = int(input().split()) S = a*b L = 2*(a+b) print(S,end='') print(L)
Traceback (most recent call last): File "/tmp/tmphzwpgzd6/tmp2gr8gdfb.py", line 1, in <module> a,b = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s054406084
p02389
u300641790
1490796054
Python
Python3
py
Runtime Error
0
0
71
a,b = int(input().split()) S = a*b L = 2*(a+b) print(S,end="") print(L)
Traceback (most recent call last): File "/tmp/tmp6lha9dtd/tmp4fn2wuw9.py", line 1, in <module> a,b = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s161277126
p02389
u822442916
1490923978
Python
Python3
py
Runtime Error
0
0
49
h=[a,b] map(int(input(),h)) print(a*b,(a+b)*2)
Traceback (most recent call last): File "/tmp/tmpwvuzztfv/tmps9lcjveb.py", line 1, in <module> h=[a,b] ^ NameError: name 'a' is not defined
s299501229
p02389
u822442916
1490926932
Python
Python3
py
Runtime Error
0
0
45
a,b=map(int,input().split) print(a*b,(a+b)*2)
Traceback (most recent call last): File "/tmp/tmpeitskxo9/tmppdofg5uv.py", line 1, in <module> a,b=map(int,input().split) ^^^^^^^ EOFError: EOF when reading a line
s675660298
p02389
u382692819
1491202407
Python
Python3
py
Runtime Error
0
0
76
import sys args = sys.argv a=int(args[1]) b=int(args[2]) print (a*b,a*2+b*2)
Traceback (most recent call last): File "/tmp/tmp7geio4_x/tmppmzvr37k.py", line 3, in <module> a=int(args[1]) ~~~~^^^ IndexError: list index out of range
s982954005
p02389
u382692819
1491210801
Python
Python3
py
Runtime Error
0
0
94
import sys a=sys.argv[1] b=sys.argv[2] def int(a,b): return a*2+b*2,a*b print(int(a,b))
Traceback (most recent call last): File "/tmp/tmpkyvn0uh_/tmpu16pagw6.py", line 3, in <module> a=sys.argv[1] ~~~~~~~~^^^ IndexError: list index out of range
s999853886
p02389
u382692819
1491210900
Python
Python3
py
Runtime Error
0
0
59
import sys a=sys.argv[1] b=sys.argv[2] print(a*2+b*2,a*b)
Traceback (most recent call last): File "/tmp/tmpz1z8dfu9/tmpzon79dbq.py", line 3, in <module> a=sys.argv[1] ~~~~~~~~^^^ IndexError: list index out of range
s897186513
p02389
u382692819
1491211009
Python
Python3
py
Runtime Error
0
0
59
import sys a=sys.argv[1] b=sys.argv[2] print(a*b,a*2+b*2)
Traceback (most recent call last): File "/tmp/tmp3fedb8ec/tmpxjekjaoo.py", line 3, in <module> a=sys.argv[1] ~~~~~~~~^^^ IndexError: list index out of range
s786676936
p02389
u382692819
1491211114
Python
Python3
py
Runtime Error
0
0
67
import sys args = sys.argv a=int(args[1]) b=int(args[2]) print(a,b)
Traceback (most recent call last): File "/tmp/tmpy6wth1jo/tmpchvaxh2h.py", line 3, in <module> a=int(args[1]) ~~~~^^^ IndexError: list index out of range
s741293687
p02389
u382692819
1491211401
Python
Python3
py
Runtime Error
0
0
78
import sys argvs = sys.argv a=int(argvs[1]) b=int(argvs[2]) print(a*b,a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpb9pqwrp_/tmpqsy8hazq.py", line 3, in <module> a=int(argvs[1]) ~~~~~^^^ IndexError: list index out of range
s334409774
p02389
u382692819
1491211804
Python
Python3
py
Runtime Error
0
0
78
import sys argvs = sys.argv a=int(argvs[1]) b=int(argvs[2]) print(a*b,a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpjtai1r2z/tmpjxm13nlw.py", line 3, in <module> a=int(argvs[1]) ~~~~~^^^ IndexError: list index out of range
s319855499
p02389
u382692819
1491211832
Python
Python
py
Runtime Error
0
0
78
import sys argvs = sys.argv a=int(argvs[1]) b=int(argvs[2]) print(a*b,a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpsn5t_jlr/tmpvrkw4js4.py", line 3, in <module> a=int(argvs[1]) ~~~~~^^^ IndexError: list index out of range
s606252608
p02389
u395334793
1491539695
Python
Python3
py
Runtime Error
0
0
52
x = int(input()) y = int(input()) print(x*y,2*(x+y))
Traceback (most recent call last): File "/tmp/tmpr26jr6px/tmpm1ioysn5.py", line 1, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s986915999
p02389
u222861595
1491585366
Python
Python3
py
Runtime Error
0
0
13
a*b 2*(a + b)
File "/tmp/tmp3o8c2ec9/tmp5yv_wmti.py", line 1 a*b 2*(a + b) ^ SyntaxError: invalid syntax
s579138417
p02389
u922695161
1491820096
Python
Python3
py
Runtime Error
0
0
49
x,y=input().split(" ") z=x*y o=(x+y)*2 print(z o)
File "/tmp/tmpq7e4qmlc/tmpt1rsgeq_.py", line 4 print(z o) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s874939855
p02389
u395334793
1491820514
Python
Python3
py
Runtime Error
0
0
172
while True: h, w = map (int,input().split(" ")) if h == w == 0 : break for y in range(h): print(''.join('#.'[(x+y) %2] for x in range(w))) print("")
Traceback (most recent call last): File "/tmp/tmpzkweo4gz/tmp0_b48uxv.py", line 2, in <module> h, w = map (int,input().split(" ")) ^^^^^^^ EOFError: EOF when reading a line
s178252438
p02389
u922695161
1491822206
Python
Python3
py
Runtime Error
0
0
58
x = input().split() z=x[0]*y[1] a=(x[0]+x[1])*2 print(z a)
File "/tmp/tmpwb_71gd_/tmpwhxh_exk.py", line 4 print(z a) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s125227264
p02389
u922695161
1491822223
Python
Python3
py
Runtime Error
0
0
58
x = input().split() z=x[0]*y[1] a=(x[0]+x[1])*2 print(z,a)
Traceback (most recent call last): File "/tmp/tmpzkbkuk67/tmpiyuwtgum.py", line 1, in <module> x = input().split() ^^^^^^^ EOFError: EOF when reading a line
s979019328
p02389
u922695161
1491822489
Python
Python3
py
Runtime Error
0
0
71
x = map(int,raw_input().split()) z=x[0]*x[1] a=(x[0]+x[1])*2 print(z,a)
Traceback (most recent call last): File "/tmp/tmpmh0laxf1/tmph2r52bnh.py", line 1, in <module> x = map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s444834696
p02389
u922695161
1491822732
Python
Python3
py
Runtime Error
0
0
71
x = map(int, input().split(" ")) z=x[0]*x[1] a=(x[0]+x[1])*2 print(z,a)
Traceback (most recent call last): File "/tmp/tmp95gvw0mi/tmp9rd8auft.py", line 1, in <module> x = map(int, input().split(" ")) ^^^^^^^ EOFError: EOF when reading a line
s074588417
p02389
u922695161
1491822802
Python
Python3
py
Runtime Error
0
0
55
import sys x, y = sys.stdin z=x*y a=(x+y)*2 print(z,a)
Traceback (most recent call last): File "/tmp/tmpn6ck_m00/tmp5y0apih6.py", line 3, in <module> x, y = sys.stdin ^^^^ ValueError: not enough values to unpack (expected 2, got 0)