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
s572307166
p02389
u825994660
1507520623
Python
Python3
py
Runtime Error
0
0
68
a = int(input()) b = int(input()) print(str(a*b)+""+str(2a + 2b))
File "/tmp/tmpje1hu5_b/tmpkygj4hza.py", line 4 print(str(a*b)+""+str(2a + 2b)) ^ SyntaxError: invalid decimal literal
s995239100
p02389
u825994660
1507520630
Python
Python3
py
Runtime Error
0
0
69
a = int(input()) b = int(input()) print(str(a*b)+" "+str(2a + 2b))
File "/tmp/tmptlezs6w5/tmpqwgmz7ab.py", line 4 print(str(a*b)+" "+str(2a + 2b)) ^ SyntaxError: invalid decimal literal
s018188738
p02389
u825994660
1507520670
Python
Python3
py
Runtime Error
0
0
71
a = int(input()) b = int(input()) print(str(a*b)+" "+str(a*2 + b*2))
Traceback (most recent call last): File "/tmp/tmptr777dpe/tmphctljs7r.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s594560183
p02389
u825994660
1507520689
Python
Python3
py
Runtime Error
0
0
70
a = int(input()) b = int(input()) print(str(a*b)+""+str(a*2 + b*2))
Traceback (most recent call last): File "/tmp/tmpry69c_53/tmpyy7lk_e8.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s086907705
p02389
u825994660
1507520702
Python
Python3
py
Runtime Error
0
0
68
a = int(input()) b = int(input()) print(str(a*b), str(a*2 + b*2))
Traceback (most recent call last): File "/tmp/tmp2xqc2ipb/tmpk1rvdfi_.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s964486884
p02389
u447423362
1507524321
Python
Python3
py
Runtime Error
0
0
88
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/tmpe7kw2759/tmpo4k0l494.py", line 7 print c, d ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s154517566
p02389
u825994660
1507524764
Python
Python3
py
Runtime Error
0
0
65
z = int(input()) m,l = z.split() print({} {}.format(m*l,m*2+l*2))
File "/tmp/tmp6he45atp/tmpqhxsm148.py", line 3 print({} {}.format(m*l,m*2+l*2)) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s483213677
p02389
u825994660
1507524774
Python
Python3
py
Runtime Error
0
0
65
z = int(input()) m,l = z.split() print({} {}.format(m*l,m*2+l*2))
File "/tmp/tmpn17hgbl4/tmp_1zv7ch5.py", line 3 print({} {}.format(m*l,m*2+l*2)) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s254961866
p02389
u825994660
1507524871
Python
Python3
py
Runtime Error
0
0
97
z = input() m,l = z.split() s = int(m) * int(l) n = int(m)*2 + int(l)*2 print({} {}.format(s,n))
File "/tmp/tmp7iy4d2_i/tmpv0203c04.py", line 6 print({} {}.format(s,n)) ^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s280770804
p02389
u825994660
1507524889
Python
Python3
py
Runtime Error
0
0
107
z = input() m,l = z.split() s = int(m) * int(l) n = int(m)*2 + int(l)*2 print({} {}.format(str(s),str(n)))
File "/tmp/tmp8yj5q89a/tmp7k3fdff3.py", line 6 print({} {}.format(str(s),str(n))) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s552701471
p02389
u400765446
1507738083
Python
Python3
py
Runtime Error
0
0
23
print(a*b,2*(a+b),'\n')
Traceback (most recent call last): File "/tmp/tmpw6_wo3_3/tmp9xxfluam.py", line 1, in <module> print(a*b,2*(a+b),'\n') ^ NameError: name 'a' is not defined
s680816851
p02389
u378480414
1508080643
Python
Python
py
Runtime Error
0
0
64
x, y = raw_input().split(' ') print '{} {}'.format(x*y, (x+y)*2)
File "/tmp/tmph4e9rdti/tmphyet3cfq.py", line 2 print '{} {}'.format(x*y, (x+y)*2) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s912093571
p02389
u424457654
1508293925
Python
Python3
py
Runtime Error
0
0
71
a, b = map(int, input().split()) s = a * b t = a * 2 + b * 2 print(s t)
File "/tmp/tmpi4i67tj6/tmp122z5fcz.py", line 4 print(s t) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s422112285
p02389
u876635199
1508490523
Python
Python3
py
Runtime Error
0
0
51
a,b = map(int, input().split()) x = a*b y = 2a + 2b
File "/tmp/tmpizehf4_9/tmpecccdt0k.py", line 3 y = 2a + 2b ^ SyntaxError: invalid decimal literal
s073624471
p02389
u996463517
1508560430
Python
Python3
py
Runtime Error
0
0
82
n = input().split() a = int(n[0]) b = int(n[1]) print('{} {}'.format(a*b,2*a+2*b)
File "/tmp/tmpxiyxwm0j/tmp8nxvra9k.py", line 5 print('{} {}'.format(a*b,2*a+2*b) ^ SyntaxError: '(' was never closed
s120185446
p02389
u996463517
1508560781
Python
Python3
py
Runtime Error
0
0
94
n = input().split() a = int(n[0]) b = int(n[1]) s = a*b l = 2*a+2*b print('{} {}'.format(s,l)
File "/tmp/tmpqshtpxa4/tmpwld7ilw1.py", line 7 print('{} {}'.format(s,l) ^ SyntaxError: '(' was never closed
s681139948
p02389
u334587021
1509129590
Python
Python3
py
Runtime Error
0
0
64
x,y = map(int,input().split().strip()) print(x*y) print(2*(x+y))
Traceback (most recent call last): File "/tmp/tmpbp_y9cbm/tmpmgjysu54.py", line 1, in <module> x,y = map(int,input().split().strip()) ^^^^^^^ EOFError: EOF when reading a line
s612903768
p02389
u334587021
1509129631
Python
Python3
py
Runtime Error
0
0
61
x,y = map(int,input().split().strip()) print(x*y," ",2*(x+y))
Traceback (most recent call last): File "/tmp/tmpraiean8w/tmpzt7gmqtq.py", line 1, in <module> x,y = map(int,input().split().strip()) ^^^^^^^ EOFError: EOF when reading a line
s436713818
p02389
u334587021
1509129689
Python
Python3
py
Runtime Error
0
0
75
x,y = map(int,input().split().strip()) s=x*y p=2*(x+y) print("%d %d"%(s,p))
Traceback (most recent call last): File "/tmp/tmpx60lr6a3/tmplvt7yddb.py", line 1, in <module> x,y = map(int,input().split().strip()) ^^^^^^^ EOFError: EOF when reading a line
s987981069
p02389
u737311644
1509145180
Python
Python3
py
Runtime Error
0
0
56
a=int(input()) b=int(input()) e=a*b c=a*2+b*2 print(e,c)
Traceback (most recent call last): File "/tmp/tmp5lmun6pr/tmpmzn9h__o.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s789866681
p02389
u043968625
1509194282
Python
Python3
py
Runtime Error
0
0
53
a=int(input().split()) print(a[0]*a[1],(a[0]+a[1])*2)
Traceback (most recent call last): File "/tmp/tmp_983olt4/tmpb3r21hd3.py", line 1, in <module> a=int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s207595385
p02389
u043968625
1509194807
Python
Python3
py
Runtime Error
0
0
58
a=input().split() b=a[0]*a[1] c=(a[0]+a[1])*2 print(b,c)
Traceback (most recent call last): File "/tmp/tmp2ldlrdz0/tmpe8in110x.py", line 2, in <module> a=input().split() ^^^^^^^ EOFError: EOF when reading a line
s016618344
p02389
u043968625
1509195568
Python
Python3
py
Runtime Error
0
0
59
x,y=[int(i) for i in input(num).split()] print(x*y,(x+y)*2)
Traceback (most recent call last): File "/tmp/tmp2_lmt1ox/tmpwltumuyf.py", line 1, in <module> x,y=[int(i) for i in input(num).split()] ^^^ NameError: name 'num' is not defined. Did you mean: 'sum'?
s585447993
p02389
u846136461
1509264186
Python
Python
py
Runtime Error
0
0
483
# coding: utf-8 import codecs import sys sys.stdout = codecs.getwriter("shift_jis")(sys.stdout) # ?????? sys.stdin = codecs.getreader("shift_jis")(sys.stdin) # ??\??? # ??\??¬?????????print??????????????´?????? print(u'?????????') ??¨?????? # ??\??¬?????????input??? input(u'?????????') ??§OK # ??°?¢???????????????????????????´??????6,7???????????????????????¢?????? height, width = map(int, raw_input.split(" ")) print("{0} {1}".format(height*width, 2*(height+width)))
Traceback (most recent call last): File "/tmp/tmpahv9772p/tmpz4r6ecp3.py", line 13, in <module> height, width = map(int, raw_input.split(" ")) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s198032941
p02389
u846136461
1509264209
Python
Python
py
Runtime Error
0
0
489
# coding: utf-8 """ import codecs import sys sys.stdout = codecs.getwriter("shift_jis")(sys.stdout) # ?????? sys.stdin = codecs.getreader("shift_jis")(sys.stdin) # ??\??? # ??\??¬?????????print??????????????´?????? print(u'?????????') ??¨?????? # ??\??¬?????????input??? input(u'?????????') ??§OK # ??°?¢???????????????????????????´??????6,7???????????????????????¢?????? """ height, width = map(int, raw_input.split(" ")) print("{0} {1}".format(height*width, 2*(height+width)))
Traceback (most recent call last): File "/tmp/tmpfdj79h8z/tmpueu_1q5u.py", line 13, in <module> height, width = map(int, raw_input.split(" ")) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s086282739
p02389
u846136461
1509264288
Python
Python
py
Runtime Error
0
0
123
height, width = map(int, raw_input.split(" ")) menseki = height * width nagasa = 2 * (height + width) print menseki, nagasa
File "/tmp/tmplaffr562/tmpsshjmr3s.py", line 4 print menseki, nagasa ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s934889813
p02389
u846136461
1509264474
Python
Python
py
Runtime Error
0
0
156
deglist = raw_input.split(" ") height = int(deglist[0]) width = int(deglist[1]) menseki = height * width nagasa = 2 * (height + width) print menseki, nagasa
File "/tmp/tmpdokmuh8_/tmpl2_srj2g.py", line 6 print menseki, nagasa ^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s580637758
p02389
u575366485
1509292024
Python
Python3
py
Runtime Error
0
0
54
a,b=[int(i),for i in input().split()] c = a*b print(c)
File "/tmp/tmpqjgay7q3/tmpad4k5138.py", line 1 a,b=[int(i),for i in input().split()] ^^^^^^^ SyntaxError: did you forget parentheses around the comprehension target?
s879749629
p02389
u575366485
1509292044
Python
Python3
py
Runtime Error
0
0
55
a,b=[int(i),for i in input().split( )] c = a*b print(c)
File "/tmp/tmprfnlqowv/tmp6riughnf.py", line 1 a,b=[int(i),for i in input().split( )] ^^^^^^^ SyntaxError: did you forget parentheses around the comprehension target?
s682117588
p02389
u022665025
1509366532
Python
Python
py
Runtime Error
0
0
31
a, b=print() print(a*b (a+b)*2)
Traceback (most recent call last): File "/tmp/tmp5b70cwap/tmp5o9v9_fd.py", line 1, in <module> a, b=print() ^^^^ TypeError: cannot unpack non-iterable NoneType object
s416737267
p02389
u022665025
1509368001
Python
Python3
py
Runtime Error
0
0
57
a, b = map(int, raw_input().split()) print(a*b, (a+b)*2 )
Traceback (most recent call last): File "/tmp/tmpdlexvv6l/tmp_g67npqb.py", line 1, in <module> a, b = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s419447289
p02389
u518939641
1509377955
Python
Python3
py
Runtime Error
0
0
72
x=int(split(input()," ")) a=x[0] b=x[1] print(str(a*b)+' '+str(2*(a+b)))
Traceback (most recent call last): File "/tmp/tmphh4k7oa8/tmpzfiwbu9p.py", line 1, in <module> x=int(split(input()," ")) ^^^^^ NameError: name 'split' is not defined
s356636151
p02389
u518939641
1509378115
Python
Python3
py
Runtime Error
0
0
72
x=int(split(input()," ")) a=x[0] b=x[1] print(str(a*b)+' '+str(2*(a+b)))
Traceback (most recent call last): File "/tmp/tmpanv92tyb/tmp52zc1tf3.py", line 1, in <module> x=int(split(input()," ")) ^^^^^ NameError: name 'split' is not defined
s758497830
p02389
u518939641
1509378163
Python
Python3
py
Runtime Error
0
0
69
x=int(input().split()) a=x[0] b=x[1] print(str(a*b)+' '+str(2*(a+b)))
Traceback (most recent call last): File "/tmp/tmpunsir789/tmpdo3sootq.py", line 1, in <module> x=int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s275101889
p02389
u518939641
1509378392
Python
Python3
py
Runtime Error
0
0
57
a,b=int(input().split()) print(str(a*b)+' '+str(2*(a+b)))
Traceback (most recent call last): File "/tmp/tmpy6rkcm2u/tmpp83bjnfv.py", line 1, in <module> a,b=int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s152674098
p02389
u480716860
1509505435
Python
Python
py
Runtime Error
0
0
222
a = int(input("?????¢??????????????\????????????????????????")) b = int(input("?????????????????\????????????????????????")) s = a * b l = (a * 2) + (b * 2) print('????????¢?????¢??????',???) print('??¨????????????',l)
File "/tmp/tmp5wpevabi/tmpvd3ftrve.py", line 5 print('????????¢?????¢??????',???) ^ SyntaxError: invalid syntax
s376940402
p02389
u480716860
1509505476
Python
Python3
py
Runtime Error
0
0
222
a = int(input("?????¢??????????????\????????????????????????")) b = int(input("?????????????????\????????????????????????")) s = a * b l = (a * 2) + (b * 2) print('????????¢?????¢??????',???) print('??¨????????????',l)
File "/tmp/tmphlh3vcwv/tmppp6q5t9n.py", line 5 print('????????¢?????¢??????',???) ^ SyntaxError: invalid syntax
s466623195
p02389
u104114903
1509510243
Python
Python
py
Runtime Error
0
0
177
in = input() for i in range(0,len(in)): if(a[i] == ' '): surface = int(a[:i])*int(a[i+1:]) edge = (int(a[:i])+int(a[i+1:]))*2 print(str(surface) + ' ' + str(edge))
File "/tmp/tmpxm2o2ua6/tmpk2x__meu.py", line 1 in = input() ^^ SyntaxError: invalid syntax
s163239928
p02389
u104114903
1509510314
Python
Python
py
Runtime Error
0
0
182
in = input() for i in range(0,len(in)): if(in[i] == ' '): surface = int(in[:i])*int(in[i+1:]) edge = (int(in[:i])+int(in[i+1:]))*2 print(str(surface) + ' ' + str(edge))
File "/tmp/tmp1yf6dqm2/tmp4vczf1xl.py", line 1 in = input() ^^ SyntaxError: invalid syntax
s675944429
p02389
u104114903
1509510436
Python
Python
py
Runtime Error
0
0
218
inputStr = input() for i in range(0,len(in)): if(inputStr[i] == ' '): surface = int(inputStr[:i])*int(inputStr[i+1:]) edge = (int(inputStr[:i])+int(inputStr[i+1:]))*2 print(str(surface) + ' ' + str(edge))
File "/tmp/tmp_tb91emd/tmpjs1azc4d.py", line 2 for i in range(0,len(in)): ^^ SyntaxError: invalid syntax
s683081504
p02389
u104114903
1509510481
Python
Python3
py
Runtime Error
0
0
218
inputStr = input() for i in range(0,len(in)): if(inputStr[i] == ' '): surface = int(inputStr[:i])*int(inputStr[i+1:]) edge = (int(inputStr[:i])+int(inputStr[i+1:]))*2 print(str(surface) + ' ' + str(edge))
File "/tmp/tmpbg6cx4ib/tmpxjq1ty11.py", line 2 for i in range(0,len(in)): ^^ SyntaxError: invalid syntax
s140616476
p02389
u183248852
1509510655
Python
Python
py
Runtime Error
0
0
83
import sys a = sys.argv[0] b = sys.argv[1] area = a*b peri = 2a+2b print area peri
File "/tmp/tmpfgzjy14u/tmplmmx8ool.py", line 6 peri = 2a+2b ^ SyntaxError: invalid decimal literal
s951236414
p02389
u650657239
1509543937
Python
Python3
py
Runtime Error
0
0
102
num = [int(i) for i in input().split()] print(num[0] * num[1] end = " ") print(num[0] * 2 + num[1] *2)
File "/tmp/tmpcc3niigg/tmppc5x_1ut.py", line 2 print(num[0] * num[1] end = " ") ^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s772142774
p02389
u553796841
1509760322
Python
Python
py
Runtime Error
0
0
48
a=int(input()) b=int(input()) print a*b ,a*2+b*2
File "/tmp/tmp62r6uau0/tmph9t6iw5w.py", line 3 print a*b ,a*2+b*2 ^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s304826786
p02389
u553796841
1509762658
Python
Python
py
Runtime Error
0
0
38
a=input() b=input() print a*b ,a*2+b*2
File "/tmp/tmppqjk_4_e/tmpslqevagk.py", line 3 print a*b ,a*2+b*2 ^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s279260888
p02389
u725391514
1510305627
Python
Python3
py
Runtime Error
0
0
40
x=int(input()) y=int(input()) print(x*y)
Traceback (most recent call last): File "/tmp/tmp5hcpsgmz/tmpzdit7qrd.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s066302860
p02389
u725391514
1510305720
Python
Python3
py
Runtime Error
0
0
55
x=int(input()) y=int(input()) print(x*y) print(x*2+y*2)
Traceback (most recent call last): File "/tmp/tmppor5buz0/tmp8qs4jt_6.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s638325573
p02389
u725391514
1510305879
Python
Python3
py
Runtime Error
0
0
36
x,y=int(input()) print(x*y, (x+y)*2)
Traceback (most recent call last): File "/tmp/tmpieq5_71z/tmpsgnkc10m.py", line 1, in <module> x,y=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s337746815
p02389
u553796841
1510306223
Python
Python3
py
Runtime Error
0
0
61
h,w=map(int,raw_input().split()) print("%d %d"%(h*w,h*2+w*2))
Traceback (most recent call last): File "/tmp/tmpcsw9srqu/tmpc5qpxft6.py", line 1, in <module> h,w=map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s547568212
p02389
u725391514
1510306288
Python
Python3
py
Runtime Error
0
0
52
x=int(input()) x1=int(input()) print(x*x1, (x+x1)*2)
Traceback (most recent call last): File "/tmp/tmpky4vcdrt/tmp247lwxlz.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s572713405
p02389
u725391514
1510306601
Python
Python3
py
Runtime Error
0
0
39
a,b=map(int,input()) print(a*b,(a+b)*2)
Traceback (most recent call last): File "/tmp/tmpnji8j3fh/tmpfd6lf4uv.py", line 1, in <module> a,b=map(int,input()) ^^^^^^^ EOFError: EOF when reading a line
s795461767
p02389
u422299972
1510319491
Python
Python3
py
Runtime Error
0
0
58
int x,y = input().split() print(x * y + " " + (x + y) / 2)
File "/tmp/tmp7xczo2g7/tmpvbkxvygc.py", line 1 int x,y = input().split() ^ SyntaxError: invalid syntax
s992138372
p02389
u422299972
1510319580
Python
Python3
py
Runtime Error
0
0
58
int x,y = input().split() print(x * y + " " + (x + y) * 2)
File "/tmp/tmp2sfjkb13/tmpc0upnjoc.py", line 1 int x,y = input().split() ^ SyntaxError: invalid syntax
s859857785
p02389
u422299972
1510319708
Python
Python3
py
Runtime Error
0
0
74
int n = input().split() x = n[0] y = n[1] print(x * y + " " + (x + y) * 2)
File "/tmp/tmp3uxjggcl/tmpukgyfc06.py", line 1 int n = input().split() ^ SyntaxError: invalid syntax
s380693196
p02389
u422299972
1510320154
Python
Python3
py
Runtime Error
0
0
109
int x,y = input().split() if x == y: print(x * y + " " + x * 4) else print(x * y + " " + (x + y) * 2)
File "/tmp/tmpo7tbxll3/tmpx80un7fn.py", line 1 int x,y = input().split() ^ SyntaxError: invalid syntax
s358223908
p02389
u422299972
1510320356
Python
Python3
py
Runtime Error
0
0
105
x,y = input().split() if x == y: print(x * y + " " + x * 4) else print(x * y + " " + (x + y) * 2)
File "/tmp/tmpyyapxt_p/tmp5zpfxdfs.py", line 4 else ^ SyntaxError: expected ':'
s778788319
p02389
u422299972
1510320530
Python
Python3
py
Runtime Error
0
0
121
n = input().split() x = n[0] y = n[1] if x == y: print(x * y + " " + x * 4) else print(x * y + " " + (x + y) * 2)
File "/tmp/tmpyzwk5887/tmppvjqrzh9.py", line 6 else ^ SyntaxError: expected ':'
s742163891
p02389
u422299972
1510320598
Python
Python3
py
Runtime Error
0
0
131
n = input().split() x = int(n[0]) y = int(n[1]) if x == y: print(x * y + " " + x * 4) else print(x * y + " " + (x + y) * 2)
File "/tmp/tmpzkjobema/tmp_ut3pddc.py", line 6 else ^ SyntaxError: expected ':'
s104929038
p02389
u422299972
1510320754
Python
Python3
py
Runtime Error
0
0
49
x,y = input().split() print(x * y, x * 2 + y * 2)
Traceback (most recent call last): File "/tmp/tmpl0q7tlu6/tmp0nv5d0jm.py", line 1, in <module> x,y = input().split() ^^^^^^^ EOFError: EOF when reading a line
s035227991
p02389
u899891332
1510451950
Python
Python3
py
Runtime Error
0
0
80
a=input().split('') print(int(a[0])*int(a[1]), end=' ') print(int(a[0]*2+a[1]*2)
File "/tmp/tmprfayai2u/tmp4l6z7_d0.py", line 3 print(int(a[0]*2+a[1]*2) ^ SyntaxError: '(' was never closed
s554982223
p02389
u899891332
1510451980
Python
Python3
py
Runtime Error
0
0
86
a=input().split('') print(int(a[0])*int(a[1]), end=' ') print(int(a[0])*2+int(a[1])*2)
Traceback (most recent call last): File "/tmp/tmpzaxpzdzg/tmpphtw3p9x.py", line 1, in <module> a=input().split('') ^^^^^^^ EOFError: EOF when reading a line
s570104947
p02389
u499289652
1510475744
Python
Python
py
Runtime Error
0
0
30
a=input() b=input() print(a*b)
Traceback (most recent call last): File "/tmp/tmpfb5imx2l/tmpikwo9esq.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s484450999
p02389
u499289652
1510475767
Python
Python
py
Runtime Error
0
0
34
a = input() b = input() print(a*b)
Traceback (most recent call last): File "/tmp/tmpa3tubson/tmpr4i9ukqg.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s532914594
p02389
u499289652
1510475775
Python
Python3
py
Runtime Error
0
0
34
a = input() b = input() print(a*b)
Traceback (most recent call last): File "/tmp/tmpnsgbkjsd/tmpuzcz_ljl.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s126332003
p02389
u499289652
1510476827
Python
Python3
py
Runtime Error
0
0
42
a = input() b = input() print(a*b,2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpx999jw1b/tmp7cdbg2c6.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s070459027
p02389
u499289652
1510476831
Python
Python
py
Runtime Error
0
0
42
a = input() b = input() print(a*b,2*a+2*b)
Traceback (most recent call last): File "/tmp/tmp9h1a8_n6/tmpz_0fwavj.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s223838996
p02389
u499289652
1510477276
Python
Python
py
Runtime Error
0
0
47
a,b=map(int,input().split()) print(a*b,2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpym05oepb/tmpr3y8skpk.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s732911573
p02389
u811314383
1510733779
Python
Python
py
Runtime Error
0
0
36
a = input() b = input() print(a + b)
Traceback (most recent call last): File "/tmp/tmpmzhqhuuz/tmpblb7kzau.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s226964309
p02389
u811314383
1510733856
Python
Python
py
Runtime Error
0
0
50
a = input() b = input() print(a*b + ' ' + 2*(a+b))
Traceback (most recent call last): File "/tmp/tmpiskk1fpn/tmpakva9hky.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s753831428
p02389
u811314383
1510734594
Python
Python3
py
Runtime Error
0
0
57
a, b = input().split print(a??????b + ' ' + 2??????(a+b))
File "/tmp/tmpsi1v4k6f/tmpp9v_3690.py", line 2 print(a??????b + ' ' + 2??????(a+b)) ^ SyntaxError: invalid syntax
s831954817
p02389
u409699893
1510736700
Python
Python
py
Runtime Error
0
0
56
a,b = int(raw_input().split(" ")) print a * b, 2*(a + b)
File "/tmp/tmpvuyc623k/tmpuqiuiiuv.py", line 2 print a * b, 2*(a + b) ^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s096885572
p02389
u409699893
1510736811
Python
Python
py
Runtime Error
0
0
92
a = int(raw_input().split(" ")[0]) b = int(raw_input().split(" ")[1]) print a * b, 2*(a + b)
File "/tmp/tmpagrcznfz/tmpdrhlzo3q.py", line 3 print a * b, 2*(a + b) ^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s181742322
p02389
u409699893
1510736948
Python
Python
py
Runtime Error
0
0
68
x = raw_input().split(" ") a = x[0] b = x[1] print a * b, 2*(a + b)
File "/tmp/tmpq5oh01lj/tmplgfcdxeb.py", line 5 print a * b, 2*(a + b) ^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s096959278
p02389
u409699893
1510737105
Python
Python
py
Runtime Error
0
0
67
x = raw_input().split(" ") a = x[0] b = x[1] print a * b, 2*(a + b)
File "/tmp/tmpcjbk41kl/tmpk5d5ckbj.py", line 4 print a * b, 2*(a + b) ^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s121688148
p02389
u488038316
1511157782
Python
Python3
py
Runtime Error
0
0
69
a, b = map(int, input().split()) print('{0} {1}'.format(a*b, 2a+2b))
File "/tmp/tmpzf32qr71/tmpdtdk8pnb.py", line 3 print('{0} {1}'.format(a*b, 2a+2b)) ^ SyntaxError: invalid decimal literal
s374107661
p02389
u488038316
1511157973
Python
Python3
py
Runtime Error
0
0
115
import sys for line in sys.stdin.readlines(): a, b = map(int, line.split()) print('{0} {1}'.format(a*b, 2a+2b))
File "/tmp/tmprfp4awqv/tmpd3c_a_cl.py", line 6 print('{0} {1}'.format(a*b, 2a+2b)) ^ SyntaxError: invalid decimal literal
s052477901
p02389
u488038316
1511158100
Python
Python3
py
Runtime Error
0
0
115
import sys for line in sys.stdin.readlines(): a, b = map(int, line.split()) print('{0} {1}'.format(a*b, 2a+2b))
File "/tmp/tmpsubttw0c/tmppk4rck00.py", line 6 print('{0} {1}'.format(a*b, 2a+2b)) ^ SyntaxError: invalid decimal literal
s212747737
p02389
u488038316
1511158203
Python
Python3
py
Runtime Error
0
0
125
import fileinput for line in fileinput.input(): a, b = map(int, line.strip().split()) print('{0} {1}'.format(a*b, 2a+2b))
File "/tmp/tmpzwo9odmz/tmpzz2urbpm.py", line 6 print('{0} {1}'.format(a*b, 2a+2b)) ^ SyntaxError: invalid decimal literal
s509428071
p02389
u335508235
1511239751
Python
Python3
py
Runtime Error
0
0
58
a=int(input()) b=int(input()) m=a*b l=2*a+2*b print(m l)
File "/tmp/tmpug5glfrh/tmp_134tadj.py", line 7 print(m l) ^ SyntaxError: invalid syntax
s876133279
p02389
u825264062
1511425639
Python
Python3
py
Runtime Error
0
0
63
x=int(input()) y=int(input()) print(x*y,end=' ') print(x*2+y*2)
Traceback (most recent call last): File "/tmp/tmp259ne0kl/tmp86lcawie.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s142581509
p02389
u141867274
1511508248
Python
Python
py
Runtime Error
0
0
43
x = input() y = input() print(x*y, 2*(x+y))
Traceback (most recent call last): File "/tmp/tmp1rrzx813/tmp98j0_4l1.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s557380296
p02389
u141867274
1511508364
Python
Python3
py
Runtime Error
0
0
53
a = int(input()) b = int(input()) print(x*y, 2*(x+y))
Traceback (most recent call last): File "/tmp/tmpkw4_jxlu/tmp3tiseon6.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s536544355
p02389
u141867274
1511508432
Python
Python3
py
Runtime Error
0
0
53
x = int(input()) y = int(input()) print(x+y, 2*(x+y))
Traceback (most recent call last): File "/tmp/tmp3_gnacqc/tmpgfurebw4.py", line 1, in <module> x = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s875117014
p02389
u902251949
1511606242
Python
Python
py
Runtime Error
0
0
355
InputData=[] while True: try: in1,in2 = map(int,raw_input().split(" ")) # Python2 if in1==0 and in2==0 : break InputData.append([in1,in2]) except EOFError: break for i in range(len(InputData)): in1,in2 = InputData[i] x = int(in1) * int(in2) y = int(in1) + int(in2) + int(in1) + int(in2) ) print(x y)
File "/tmp/tmpdk8jjeq4/tmpo5ywakfy.py", line 13 y = int(in1) + int(in2) + int(in1) + int(in2) TabError: inconsistent use of tabs and spaces in indentation
s963867285
p02389
u217069758
1511675513
Python
Python3
py
Runtime Error
0
0
86
a = int(input()) b = int(input()) if (3 <= a <= 5) and (3 <= b <= 5): print(a * b)
Traceback (most recent call last): File "/tmp/tmp4mo1_282/tmpbejz4et9.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s253716271
p02389
u968165442
1512314778
Python
Python3
py
Runtime Error
0
0
170
i=input() a,b = i.split(' ') v,h = int(a),int(b) area = v * h div = 2 * (v + h) print(' '.join([str(area),str(div)])) ~
File "/tmp/tmplj_ovxou/tmphs359fv2.py", line 1 i=input() IndentationError: unexpected indent
s884362809
p02389
u968165442
1512315427
Python
Python3
py
Runtime Error
0
0
167
i=input() a,b = i.split(' ') v,h = int(a),int(b) area = v * h div = 2 * (v + h) print(' '.join([str(area),str(div)]))
File "/tmp/tmp61dp0_nu/tmp8noa07ex.py", line 1 i=input() IndentationError: unexpected indent
s594065947
p02389
u017523606
1512808690
Python
Python3
py
Runtime Error
0
0
74
a = input() b = input() a = int(a) b = int(b) print('%d %d'%(a*b,2*a+2*b))
Traceback (most recent call last): File "/tmp/tmp3xn69tnq/tmpv7gdemdj.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s670039903
p02389
u017523606
1512809236
Python
Python3
py
Runtime Error
0
0
72
a = input() b = input() print('%d %d'%(int(a)*int(b),2*int(a)+2*int(b)))
Traceback (most recent call last): File "/tmp/tmplapvbrp3/tmpoqb1oolu.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s104524059
p02389
u017523606
1512809315
Python
Python3
py
Runtime Error
0
0
72
a = input() b = input() print('%d %d'%(int(a)*int(b),2*int(a)+2*int(b)))
Traceback (most recent call last): File "/tmp/tmpsniftek3/tmpqu9494hx.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s044955165
p02389
u150984829
1513041062
Python
Python3
py
Runtime Error
0
0
47
x=input() print(f"{x[0]*x[1}} {(x[0]+x[1])*2}")
File "/tmp/tmp21x7871w/tmpmfla8w3f.py", line 2 print(f"{x[0]*x[1}} {(x[0]+x[1])*2}") ^ SyntaxError: f-string: closing parenthesis '}' does not match opening parenthesis '['
s938238791
p02389
u150984829
1513041076
Python
Python3
py
Runtime Error
0
0
47
x=input() print(f"{x[0]*x[1}} {(x[0]+x[1])*2}")
File "/tmp/tmp7sdcpq2w/tmpm8pq67og.py", line 2 print(f"{x[0]*x[1}} {(x[0]+x[1])*2}") ^ SyntaxError: f-string: closing parenthesis '}' does not match opening parenthesis '['
s197362906
p02389
u150984829
1513041101
Python
Python3
py
Runtime Error
0
0
58
x=input().split(" ") print(f"{x[0]*x[1}} {(x[0]+x[1])*2}")
File "/tmp/tmpn7apzhe6/tmpa__4n5ju.py", line 2 print(f"{x[0]*x[1}} {(x[0]+x[1])*2}") ^ SyntaxError: f-string: closing parenthesis '}' does not match opening parenthesis '['
s479362104
p02389
u150984829
1513048384
Python
Python3
py
Runtime Error
0
0
53
a,b=map(int,input().split()) print(f'{a*b} {(a+b)*2})
File "/tmp/tmp3mislmcj/tmpfsrvt45e.py", line 2 print(f'{a*b} {(a+b)*2}) ^ SyntaxError: unterminated string literal (detected at line 2)
s544402040
p02389
u266356399
1513221641
Python
Python3
py
Runtime Error
0
0
87
from sys import stdin for line in stdin: n = int(line) if n == 42: break print(n)
s051854737
p02389
u423320231
1513340959
Python
Python3
py
Runtime Error
0
0
37
a=input() b=input() print(ab,2(a+b))
/tmp/tmp2mgo23wp/tmp3ec8vvk9.py:4: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? print(ab,2(a+b)) Traceback (most recent call last): File "/tmp/tmp2mgo23wp/tmp3ec8vvk9.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s653488176
p02389
u423320231
1513341211
Python
Python3
py
Runtime Error
0
0
56
x=input() y=input() a=int(x) b=int(y) print(a*b,2(a+b))
/tmp/tmp2djub7yn/tmpzcffxdjr.py:6: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? print(a*b,2(a+b)) Traceback (most recent call last): File "/tmp/tmp2djub7yn/tmpzcffxdjr.py", line 1, in <module> x=input() ^^^^^^^ EOFError: EOF when reading a line
s842059750
p02389
u423320231
1513341488
Python
Python3
py
Runtime Error
0
0
51
a,b=map(int,raw_input().split()) print(a*b,2*(a+b))
Traceback (most recent call last): File "/tmp/tmpff0wu5w6/tmpp3_2odjc.py", line 1, in <module> a,b=map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s458343346
p02389
u830563109
1513438380
Python
Python3
py
Runtime Error
0
0
56
a = input() b = input() m = a*b s = a+b*2 print("m,s")
Traceback (most recent call last): File "/tmp/tmptl8grvkc/tmp_rhxt3_1.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s352561304
p02389
u830563109
1513438442
Python
Python3
py
Runtime Error
0
0
66
a = int(input()) b = int(input()) m = a*b s = a+b*2 print("m,s")
Traceback (most recent call last): File "/tmp/tmpf5rfp7gc/tmpl8bwn8zq.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line