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
s803853116
p02389
u166841004
1524549482
Python
Python3
py
Runtime Error
0
0
39
a=input(a b) print(a*b) print(a*2+b*2)
File "/tmp/tmp8k__lri6/tmprpfqtg5m.py", line 1 a=input(a b) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s554416976
p02389
u166841004
1524549494
Python
Python3
py
Runtime Error
0
0
39
a=input(a,b) print(a*b) print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmptifrrb3k/tmp5lt2b44x.py", line 1, in <module> a=input(a,b) ^ NameError: name 'a' is not defined
s986924602
p02389
u166841004
1524549528
Python
Python3
py
Runtime Error
0
0
38
a,b=input() print(a*b) print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmp01wrak2k/tmpyur_3bw7.py", line 1, in <module> a,b=input() ^^^^^^^ EOFError: EOF when reading a line
s836486463
p02389
u166841004
1524549907
Python
Python3
py
Runtime Error
0
0
71
a,b=[input().split(' ')] print(int(a)*int(b)) print(int(a)*2+int(b)*2)
Traceback (most recent call last): File "/tmp/tmpx6esgege/tmpno8nvfkq.py", line 1, in <module> a,b=[input().split(' ')] ^^^^^^^ EOFError: EOF when reading a line
s962045459
p02389
u166841004
1524549917
Python
Python3
py
Runtime Error
0
0
70
a,b=[input().split('')] print(int(a)*int(b)) print(int(a)*2+int(b)*2)
Traceback (most recent call last): File "/tmp/tmpzyxiu4zt/tmp2huw6017.py", line 1, in <module> a,b=[input().split('')] ^^^^^^^ EOFError: EOF when reading a line
s251038016
p02389
u702242181
1524621605
Python
Python
py
Runtime Error
0
0
84
#coding:UTF-8 a = input() b = input() x=a*b y=2*(a+b) print int(x) print int(y)
File "/tmp/tmph4g11ugq/tmpds0981u7.py", line 9 print int(x) ^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s915484310
p02389
u884342371
1524796262
Python
Python3
py
Runtime Error
0
0
37
a, b = map(int, input()) print(a*b)
Traceback (most recent call last): File "/tmp/tmpx1aslgii/tmpzi7ki8yg.py", line 1, in <module> a, b = map(int, input()) ^^^^^^^ EOFError: EOF when reading a line
s280672491
p02389
u884342371
1524796298
Python
Python3
py
Runtime Error
0
0
46
a, b = map(int, input()) print(a*b, 2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpiyid7tkn/tmp5hxxhw22.py", line 1, in <module> a, b = map(int, input()) ^^^^^^^ EOFError: EOF when reading a line
s675395616
p02389
u836133197
1524838155
Python
Python3
py
Runtime Error
0
0
129
#include <stdio.h> int main() { int a, b; scanf("%d%d", &a, &b); printf("%d %d\n", a*b, 2*a+2*b); return 0; }
File "/tmp/tmp5pkcjp26/tmpv78jg71f.py", line 3 int main() ^^^^ SyntaxError: invalid syntax
s588474413
p02389
u500257793
1525421921
Python
Python3
py
Runtime Error
0
0
57
a=int(input()) b=int(input()) print(f"{a*b} {(a+b)*2}")
Traceback (most recent call last): File "/tmp/tmp1px59wz0/tmpn89_ebu8.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s133169498
p02389
u500257793
1525421970
Python
Python3
py
Runtime Error
0
0
50
a=int(input()) b=int(input()) print(a*b (a+b)*2)
Traceback (most recent call last): File "/tmp/tmpai2a2xza/tmpiur6j1e5.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s676710184
p02389
u500257793
1525422089
Python
Python3
py
Runtime Error
0
0
57
a=int(input()) b=int(input()) c=a*b;d=(a+b)*2 print(c d)
File "/tmp/tmpbzhy3awb/tmpnsr7kop9.py", line 4 print(c d) ^ SyntaxError: invalid syntax
s142928285
p02389
u500257793
1525422324
Python
Python3
py
Runtime Error
0
0
57
a=int(input()) b=int(input()) print(a*b,(a+b)*2,sep=" ")
Traceback (most recent call last): File "/tmp/tmpbllj_b_8/tmpd2g8r7t4.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s228945456
p02389
u147527299
1525423664
Python
Python3
py
Runtime Error
0
0
47
a,b=map(int,input().split()) print(a*b,2(a+b))
/tmp/tmpwtduhg_3/tmpwrww3apr.py:2: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? print(a*b,2(a+b)) Traceback (most recent call last): File "/tmp/tmpwtduhg_3/tmpwrww3apr.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s405167205
p02389
u285250075
1525445806
Python
Python
py
Runtime Error
0
0
68
a ,b = map(int,input().split()) s = a*b l= a*2 + b*2 print(s+" "+l)
Traceback (most recent call last): File "/tmp/tmpersztvna/tmpqhnyxe47.py", line 1, in <module> a ,b = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s384162497
p02389
u285250075
1525446194
Python
Python3
py
Runtime Error
0
0
69
a, b = map(int, input().split()) s = a*b l= a*2 + b*2 print(s+" "+l)
Traceback (most recent call last): File "/tmp/tmpunl0f6fh/tmp2jk39qpz.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s502853293
p02389
u986478725
1525930789
Python
Python3
py
Runtime Error
0
0
136
def main(): a = int(input()) b = int(input()) print('%d %d' % (a * b, 2 * (a + b))) if __name__ == "__main__": main()
Traceback (most recent call last): File "/tmp/tmpyhttrrkw/tmp88yo7kt9.py", line 7, in <module> main() File "/tmp/tmpyhttrrkw/tmp88yo7kt9.py", line 2, in main a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s632402248
p02389
u986478725
1525931928
Python
Python3
py
Runtime Error
0
0
175
def main(): a = [] for i in range(2): a.append(int(input())) print(str(a[0] * a[1]) + " " + str(2 * (a[0] + a[1]))) if __name__ == "__main__": main()
Traceback (most recent call last): File "/tmp/tmph66v6ur8/tmpqgg10t9i.py", line 8, in <module> main() File "/tmp/tmph66v6ur8/tmpqgg10t9i.py", line 4, in main a.append(int(input())) ^^^^^^^ EOFError: EOF when reading a line
s559015404
p02389
u986478725
1525932034
Python
Python3
py
Runtime Error
0
0
230
def numinput(): a = input().split() for i in range(len(a)): a[i] = int(a[i]) return a def main(): a = numinput() print('%d %d' % (a[0] * a[1], 2 * (a[0] + a[1])) if __name__ == "__main__": main()
File "/tmp/tmpl698wydm/tmppfj21iag.py", line 9 print('%d %d' % (a[0] * a[1], 2 * (a[0] + a[1])) ^ SyntaxError: '(' was never closed
s447792893
p02389
u455935767
1526019980
Python
Python3
py
Runtime Error
0
0
76
a = input() b = input() y = int(a)*int(b) z = int(a)*2+int(b)*2 print(y,z)
Traceback (most recent call last): File "/tmp/tmphfk2489g/tmpzmdcva7e.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s106825331
p02389
u136295375
1526286835
Python
Python
py
Runtime Error
0
0
48
a=input() b=input() c=a*b d=2*(a+b) print (c,d)
Traceback (most recent call last): File "/tmp/tmphexlerz0/tmp2kyoq2y4.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s333899278
p02389
u136295375
1526286845
Python
Python
py
Runtime Error
0
0
46
a=input() b=input() c=a*b d=2*(a+b) print (c)
Traceback (most recent call last): File "/tmp/tmp0m5p6khk/tmpknioxj0z.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s516365305
p02389
u136295375
1526286877
Python
Python
py
Runtime Error
0
0
36
a=input() b=input() c=a*b print (c)
Traceback (most recent call last): File "/tmp/tmpai6u3_3x/tmphyk_ziqh.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s064783654
p02389
u361028487
1526386913
Python
Python3
py
Runtime Error
0
0
49
a=int(input()) b=int(input()) print(a*b,(a+b)*2)
Traceback (most recent call last): File "/tmp/tmp18ks055m/tmpn_mrth73.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s975332298
p02389
u361028487
1526387002
Python
Python3
py
Runtime Error
0
0
57
a=input() b=input() a=int(a) b=int(b) print(a*b,(a+b)*2)
Traceback (most recent call last): File "/tmp/tmpk4lad3w5/tmpxxtflx78.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s483707709
p02389
u890641984
1526453328
Python
Python3
py
Runtime Error
0
0
55
a = (input()) b = (input()) print(a*b) print(2a+2b)
File "/tmp/tmpgo_kr4ww/tmp_u8ytm3h.py", line 7 print(2a+2b) ^ SyntaxError: invalid decimal literal
s300954552
p02389
u890641984
1526453524
Python
Python3
py
Runtime Error
0
0
37
a,b = (4,5) print(a*b) print(2a+2b)
File "/tmp/tmpbypkzgx4/tmpmh9znu5s.py", line 4 print(2a+2b) ^ SyntaxError: invalid decimal literal
s882259140
p02389
u890641984
1526453624
Python
Python3
py
Runtime Error
0
0
60
a = int(input()) b = int(input()) print(a*b) print(2a+2b)
File "/tmp/tmp01tynwwt/tmpe_e37r02.py", line 6 print(2a+2b) ^ SyntaxError: invalid decimal literal
s605672297
p02389
u890641984
1526453701
Python
Python3
py
Runtime Error
0
0
54
a = (input()) b = (input()) print(a*b) print(2a+2b)
File "/tmp/tmprnj7dgcb/tmpbkw39cb7.py", line 6 print(2a+2b) ^ SyntaxError: invalid decimal literal
s008890039
p02389
u890641984
1526453719
Python
Python3
py
Runtime Error
0
0
46
a = input b = input print(a*b) print(2a+2b)
File "/tmp/tmpzu_wtzev/tmplnapd4xx.py", line 6 print(2a+2b) ^ SyntaxError: invalid decimal literal
s369667067
p02389
u890641984
1526453759
Python
Python3
py
Runtime Error
0
0
42
a=input b=input print(a*b) print(2a+2b)
File "/tmp/tmphvygu6zi/tmp3fy2gjo6.py", line 6 print(2a+2b) ^ SyntaxError: invalid decimal literal
s449689710
p02389
u890641984
1526453935
Python
Python3
py
Runtime Error
0
0
41
a=input b=input print(a*b) print(2a+2b)
File "/tmp/tmpiez_l888/tmp3_eq9say.py", line 5 print(2a+2b) ^ SyntaxError: invalid decimal literal
s041423815
p02389
u890641984
1526453954
Python
Python3
py
Runtime Error
0
0
45
a=input() b=input() print(a*b) print(2a+2b)
File "/tmp/tmpodo58yds/tmp5_h5_6bw.py", line 5 print(2a+2b) ^ SyntaxError: invalid decimal literal
s464962253
p02389
u890641984
1526454666
Python
Python3
py
Runtime Error
0
0
38
a=input() b=input() print(a*b,2a+2b)
File "/tmp/tmp6kkb89e9/tmp0tthl9u0.py", line 4 print(a*b,2a+2b) ^ SyntaxError: invalid decimal literal
s970671911
p02389
u890641984
1526454724
Python
Python3
py
Runtime Error
0
0
48
a=int(input()) b=int(input()) print(a*b,2a+2b)
File "/tmp/tmp029hp6m6/tmpvse0yo0c.py", line 4 print(a*b,2a+2b) ^ SyntaxError: invalid decimal literal
s501330929
p02389
u890641984
1526454865
Python
Python3
py
Runtime Error
0
0
50
a=int(input()) b=int(input()) print(a*b,2(a+b))
/tmp/tmppqvk5hqk/tmpfpyc143v.py:5: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? print(a*b,2(a+b)) Traceback (most recent call last): File "/tmp/tmppqvk5hqk/tmpfpyc143v.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s600980850
p02389
u890641984
1526454942
Python
Python3
py
Runtime Error
0
0
43
a=(input()) b=(input()) print(a*b,2(a+b))
/tmp/tmpq9lxc0q4/tmpgucgifum.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/tmpq9lxc0q4/tmpgucgifum.py", line 1, in <module> a=(input()) ^^^^^^^ EOFError: EOF when reading a line
s641266095
p02389
u890641984
1526456146
Python
Python3
py
Runtime Error
0
0
83
inp=input() abl=inp.split() map(int,abl) a,b=list(map(int,abl)) print(a*b,2(a+b))
/tmp/tmpyzxz24q_/tmphnjzudlv.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/tmpyzxz24q_/tmphnjzudlv.py", line 1, in <module> inp=input() ^^^^^^^ EOFError: EOF when reading a line
s095507948
p02389
u890641984
1526456160
Python
Python3
py
Runtime Error
0
0
83
inp=input() abl=inp.split() map(int,abl) a,b=list(map(int,abl)) print(a*b,2(a+b))
/tmp/tmpc9lnhlnz/tmp37ke0dyv.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/tmpc9lnhlnz/tmp37ke0dyv.py", line 1, in <module> inp=input() ^^^^^^^ EOFError: EOF when reading a line
s444393503
p02389
u890641984
1526456188
Python
Python3
py
Runtime Error
0
0
83
inp=input() abl=inp.split() map(int,abl) a,b=list(map(int,abl)) print(a*b,2(a+b))
/tmp/tmp1xcalmm2/tmpgc1x0wix.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/tmp1xcalmm2/tmpgc1x0wix.py", line 1, in <module> inp=input() ^^^^^^^ EOFError: EOF when reading a line
s523587758
p02389
u580559697
1526526423
Python
Python3
py
Runtime Error
0
0
32
x=int(input(x, y)) print(x * y)
Traceback (most recent call last): File "/tmp/tmp_25wtkzb/tmp92v7cn3y.py", line 1, in <module> x=int(input(x, y)) ^ NameError: name 'x' is not defined
s891214096
p02389
u500257793
1526560743
Python
Python3
py
Runtime Error
0
0
56
a=int(input()) b=int(input()) print(f"{a*b} {(a+b)*2}")
Traceback (most recent call last): File "/tmp/tmpgr3izbju/tmpj2lyt57m.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s098362945
p02389
u500257793
1526561017
Python
Python3
py
Runtime Error
0
0
55
a=int(input()) b=int(input()) print(f"{a*b}{(a+b)*2}")
Traceback (most recent call last): File "/tmp/tmpgtqrxxjs/tmpnwu1tx7i.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s509506904
p02389
u500257793
1526561259
Python
Python3
py
Runtime Error
0
0
56
a=int(input()) b=int(input()) print(f"{a*b},{(a+b)*2}")
Traceback (most recent call last): File "/tmp/tmpqmunpclz/tmpm7e5q1pt.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s686592967
p02389
u500257793
1526561333
Python
Python3
py
Runtime Error
0
0
49
a=int(input()) b=int(input()) print(a*b (a+b)*2)
Traceback (most recent call last): File "/tmp/tmp9qnkh8f5/tmp23lx1r28.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s048651097
p02389
u500257793
1526561586
Python
Python3
py
Runtime Error
0
0
48
a,b=map(int,input().split()) print(a*b (a+b)*2)
Traceback (most recent call last): File "/tmp/tmp0rpdrepu/tmprd1_abhq.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s545370057
p02389
u527389300
1526610367
Python
Python3
py
Runtime Error
0
0
53
l = map(int, raw_input().split()) print(l[0]*l[1])
Traceback (most recent call last): File "/tmp/tmpqem_bw9j/tmp8j3cm6j1.py", line 1, in <module> l = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s842097994
p02389
u527389300
1526610530
Python
Python3
py
Runtime Error
0
0
52
l = map(int, input().split()) print l[0] print l[1]
File "/tmp/tmpe66do5xp/tmputd873vy.py", line 2 print l[0] ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s820520443
p02389
u637927800
1526846871
Python
Python3
py
Runtime Error
0
0
66
a, b = map(int, input().split) print("{} {}".format(a*b, 2*(a+b))
File "/tmp/tmpzx_gc57f/tmpzxx_wu9n.py", line 2 print("{} {}".format(a*b, 2*(a+b)) ^ SyntaxError: '(' was never closed
s804121010
p02389
u637927800
1526846914
Python
Python3
py
Runtime Error
0
0
68
a, b = map(int, input().split()) print("{} {}".format(a*b, 2*(a+b))
File "/tmp/tmped58qbus/tmpltrk5sir.py", line 2 print("{} {}".format(a*b, 2*(a+b)) ^ SyntaxError: '(' was never closed
s261384358
p02389
u237094818
1527358427
Python
Python
py
Runtime Error
0
0
126
# -*- coding: utf-8 x = map(int, raw_input(),split()) a = x[0] b = x[1] R = a*b P = 2*a+2*b A = str(R)+" "+str(P) print(A)
Traceback (most recent call last): File "/tmp/tmp_rq0s50k/tmpdhruyho4.py", line 3, in <module> x = map(int, raw_input(),split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s757346378
p02389
u884342371
1527404452
Python
Python3
py
Runtime Error
0
0
69
a = int(input()) b = int(input()) print("%d %d", % a*b, 2*a + 2*b)
File "/tmp/tmp1klx3pmv/tmpj6o7svjg.py", line 4 print("%d %d", % a*b, 2*a + 2*b) ^ SyntaxError: invalid syntax
s237119326
p02389
u884342371
1527404653
Python
Python3
py
Runtime Error
0
0
71
a = int(input()) b = int(input()) print("%d %d", % (a*b, 2*a + 2*b))
File "/tmp/tmpg_ryy9b2/tmpy9yybikg.py", line 4 print("%d %d", % (a*b, 2*a + 2*b)) ^ SyntaxError: invalid syntax
s712700461
p02389
u884342371
1527405569
Python
Python3
py
Runtime Error
0
0
70
a, b = map(int, input().split()) print("%d %d", % (a*b, 2*a + 2*b))
File "/tmp/tmp2eplt859/tmpc1pbx6y2.py", line 3 print("%d %d", % (a*b, 2*a + 2*b)) ^ SyntaxError: invalid syntax
s027790133
p02389
u884342371
1527405622
Python
Python3
py
Runtime Error
0
0
69
a, b = map(int, input().split()) print("%d %d", %(a*b, 2*a + 2*b))
File "/tmp/tmpx5d01typ/tmpk1pot773.py", line 3 print("%d %d", %(a*b, 2*a + 2*b)) ^ SyntaxError: invalid syntax
s091169620
p02389
u884342371
1527405642
Python
Python3
py
Runtime Error
0
0
69
a, b = map(int, input().split()) print("%d %d", %(a*b, 2*a + 2*b))
File "/tmp/tmpsqt4_3ik/tmpdov9hwj6.py", line 3 print("%d %d", %(a*b, 2*a + 2*b)) ^ SyntaxError: invalid syntax
s391345725
p02389
u884342371
1527405944
Python
Python3
py
Runtime Error
0
0
66
a, b = map(int,input().split()) print("%d %d" %(a*b, 2*a+2*b))
File "/tmp/tmpmo30kuys/tmpdo2c7cxn.py", line 1 a, b = map(int,input().split()) IndentationError: unexpected indent
s622542959
p02389
u884342371
1527405974
Python
Python
py
Runtime Error
0
0
66
a, b = map(int,input().split()) print("%d %d" %(a*b, 2*a+2*b))
File "/tmp/tmpmz1n9ir0/tmp7e_gp8zi.py", line 1 a, b = map(int,input().split()) IndentationError: unexpected indent
s756704982
p02389
u176580590
1527410684
Python
Python3
py
Runtime Error
0
0
49
a=int(input()) b=int(input()) print(a*b,(a+b)*2)
File "/tmp/tmpbnuim94j/tmpoj1o249_.py", line 1 a=int(input()) b=int(input()) ^ SyntaxError: invalid syntax
s310031375
p02389
u176580590
1527410710
Python
Python3
py
Runtime Error
0
0
50
a=int(input()) b=int(input()) print(a*b,(a+b)*2)
Traceback (most recent call last): File "/tmp/tmpq9cftg2k/tmppyf9asik.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s597596897
p02389
u966110132
1527449577
Python
Python3
py
Runtime Error
0
0
42
x=int(input()) y=int(input()) print (x*y)
Traceback (most recent call last): File "/tmp/tmplot_6xna/tmplm5a3mez.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s223938157
p02389
u229973939
1527507547
Python
Python3
py
Runtime Error
0
0
52
a = input() b = input() print(a * b+ +(a + b) * 2)
Traceback (most recent call last): File "/tmp/tmpjdvtmjjw/tmp4vtxcaya.py", line 2, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s883428492
p02389
u229973939
1527507583
Python
Python3
py
Runtime Error
0
0
72
a = input() b = input() print(int(a) * int(b)+ +(int(a) + int(b)) * 2)
Traceback (most recent call last): File "/tmp/tmpjrkso72p/tmp0qjxik33.py", line 2, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s063424130
p02389
u229973939
1527507648
Python
Python3
py
Runtime Error
0
0
70
a = input() b = input() print(int(a) * int(b) (int(a) + int(b)) * 2)
Traceback (most recent call last): File "/tmp/tmpssba9fz8/tmpnv29unmk.py", line 2, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s210080064
p02389
u229973939
1527507727
Python
Python3
py
Runtime Error
0
0
76
a = input() b = input() print(int(a) * int(b)) print((int(a) * int(b)) * 2)
Traceback (most recent call last): File "/tmp/tmp_j26gfx8/tmplf94be_c.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s205346205
p02389
u229973939
1527507785
Python
Python3
py
Runtime Error
0
0
77
a = input() b = input() print(int(a) * int(b)) print((int(a) + int(b)) * 2)
Traceback (most recent call last): File "/tmp/tmp54tnwafa/tmpdfx4khh_.py", line 2, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s407449756
p02389
u229973939
1527520409
Python
Python3
py
Runtime Error
0
0
58
a,b = map(int,input(),split()) print(a * b,(a + b) * 2)
Traceback (most recent call last): File "/tmp/tmph2kde_50/tmprp4ykbw2.py", line 1, in <module> a,b = map(int,input(),split()) ^^^^^^^ EOFError: EOF when reading a line
s435898225
p02389
u229973939
1527520567
Python
Python
py
Runtime Error
0
0
56
a,b = map(int,input(),split()) print(a * b,(a + b) * 2)
Traceback (most recent call last): File "/tmp/tmpb32eiw_4/tmpf2f6st1_.py", line 1, in <module> a,b = map(int,input(),split()) ^^^^^^^ EOFError: EOF when reading a line
s399646396
p02389
u229973939
1527520599
Python
Python3
py
Runtime Error
0
0
56
a,b = map(int,input(),split()) print(a * b,(a + b) * 2)
Traceback (most recent call last): File "/tmp/tmpzj1t7apf/tmpzr80wmq8.py", line 1, in <module> a,b = map(int,input(),split()) ^^^^^^^ EOFError: EOF when reading a line
s960380767
p02389
u745214779
1527640040
Python
Python3
py
Runtime Error
0
0
68
x = input() y = input() x = int(x) y = int(y) print (x*y, x*2+y*2)
Traceback (most recent call last): File "/tmp/tmp7ebyu7mv/tmpdrmrgdnc.py", line 1, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s953870741
p02389
u745214779
1527640211
Python
Python3
py
Runtime Error
0
0
55
input(a, b) a = int(a) b = int(b) print (a*b, a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpljox2mrk/tmpkqyreogi.py", line 1, in <module> input(a, b) ^ NameError: name 'a' is not defined
s796741108
p02389
u117053676
1528243903
Python
Python3
py
Runtime Error
0
0
76
a,b = map(int,input().split()) men = a*b hen = 2*(a+b) print(men+" "+hen)
Traceback (most recent call last): File "/tmp/tmpfqzg1mg2/tmps_6z3aeh.py", line 1, in <module> a,b = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s190085407
p02389
u597483031
1528368203
Python
Python3
py
Runtime Error
0
0
82
a=int(input()) b=int(input()) area=a*b longht=a*2+b*2 print(area) print(longht)
Traceback (most recent call last): File "/tmp/tmpy7piemke/tmp95yzjajd.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s212030562
p02389
u597483031
1528368441
Python
Python3
py
Runtime Error
0
0
82
a=int(input()) b=int(input()) area=a*b print(area) longht=2*a+2*b print(longht)
Traceback (most recent call last): File "/tmp/tmpfcy4zaxx/tmpatrpas0q.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s128226408
p02389
u597483031
1528368665
Python
Python3
py
Runtime Error
0
0
116
a=int(input()) b=int(input()) area=a*b print(area) longht=2*a+2*b print(longht) print(str(area)+" "+str(longht))
Traceback (most recent call last): File "/tmp/tmpdlvoyj3h/tmprq3wg2s0.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s749604247
p02389
u597483031
1528368709
Python
Python3
py
Runtime Error
0
0
90
a=int(input()) b=int(input()) area=a*b longht=2*a+2*b print(str(area)+" "+str(longht))
Traceback (most recent call last): File "/tmp/tmpoe37utzn/tmpvdq2mpcw.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s069564181
p02389
u617913400
1528728097
Python
Python3
py
Runtime Error
0
0
36
a,b=int(input()) print(a*b,a*2+b*2)
Traceback (most recent call last): File "/tmp/tmp8kfsfr7h/tmp4cs9bael.py", line 1, in <module> a,b=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s757412800
p02389
u617913400
1528728156
Python
Python3
py
Runtime Error
0
0
49
a=int(input()) b=int(input()) print(a*b,a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpllvckd7z/tmpsg713573.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s587750044
p02389
u617913400
1528728241
Python
Python3
py
Runtime Error
0
0
56
a=int(input()) b=int(input()) print(a*b) print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmp8qu7tzpj/tmpo0e0kux7.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s136800973
p02389
u420214671
1528967037
Python
Python3
py
Runtime Error
0
0
56
a,b=input().split() a=int(a) b=int(b) print(a*b,2*(a+b)
File "/tmp/tmpha1pku1h/tmpgn0buoxx.py", line 4 print(a*b,2*(a+b) ^ SyntaxError: '(' was never closed
s672362488
p02389
u420214671
1529022870
Python
Python3
py
Runtime Error
0
0
57
a,b=input().split() a=int(a) b=int(b) print(a*b.2*(a+b))
File "/tmp/tmpvttcabmg/tmppnlem9p1.py", line 4 print(a*b.2*(a+b)) ^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s638946202
p02389
u800780602
1529041241
Python
Python3
py
Runtime Error
0
0
53
a = int(input()) b = int(input()) print((a + b) * 2)
Traceback (most recent call last): File "/tmp/tmpykzsxjq7/tmps6k2bv1z.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s775988173
p02389
u800780602
1529041287
Python
Python3
py
Runtime Error
0
0
66
a = int(input()) b = int(input()) print(a * b) print((a + b) * 2)
Traceback (most recent call last): File "/tmp/tmpl5f3v4bs/tmp7_zlpnit.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s997903645
p02389
u800780602
1529041359
Python
Python3
py
Runtime Error
0
0
62
a = int(input()) b = int(input()) print(a*b, ' ', (a+b) * 2 )
Traceback (most recent call last): File "/tmp/tmp0vzp_0hx/tmpamn_qj6s.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s720695148
p02389
u955389483
1529391234
Python
Python3
py
Runtime Error
0
0
313
area_input = input() vertical = 0 side = 0 area_list = area_input.split(',') if 1 <= vertical && side <= 100: for i in area_list: vertical = area_list[0] side = area_list[1] area = int(vertical) * int(side) langth = 2 * (int(vertical) + int(vertical)) print(str(area) + " " + str(langth))
File "/tmp/tmp2k4mu5w5/tmpygf3umvs.py", line 6 if 1 <= vertical && side <= 100: ^ SyntaxError: invalid syntax
s904487994
p02389
u872428181
1529396097
Python
Python3
py
Runtime Error
0
0
118
data_str = input() data = data_str.split(" ") print(int(data[0]) * int(data[1]) +' '+2 * (int(data[0])+int(data[1])))
Traceback (most recent call last): File "/tmp/tmphbnxjofs/tmpsumm3_8q.py", line 1, in <module> data_str = input() ^^^^^^^ EOFError: EOF when reading a line
s095119348
p02389
u986523878
1529412299
Python
Python3
py
Runtime Error
0
0
96
i = list(map(int,input().split())) a = i[0]*i[1] b = 2*(i[0]+i[1]) print("{0} {1}".format(a.b))
Traceback (most recent call last): File "/tmp/tmpo6qca_pk/tmp3mlffskf.py", line 1, in <module> i = list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s318026542
p02389
u119807026
1529738117
Python
Python3
py
Runtime Error
0
0
59
a, b = map(int, split()) print(str(a*b )+ str(a*2 + b*2 ))
Traceback (most recent call last): File "/tmp/tmp7b2e1ghf/tmpgyozrxfo.py", line 1, in <module> a, b = map(int, split()) ^^^^^ NameError: name 'split' is not defined
s869313534
p02389
u649777480
1529746871
Python
Python
py
Runtime Error
0
0
42
a , b = input() print(a*b) print(2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpbv1twihi/tmpzh20oshm.py", line 1, in <module> a , b = input() ^^^^^^^ EOFError: EOF when reading a line
s239902749
p02389
u646500971
1529749339
Python
Python3
py
Runtime Error
0
0
81
a = int(iput()) print(' ') b = int(input()) print(a * b + ' ' + a * 2 + b * 2)
Traceback (most recent call last): File "/tmp/tmp80ne4qlf/tmpbv_y20ag.py", line 1, in <module> a = int(iput()) ^^^^ NameError: name 'iput' is not defined. Did you mean: 'input'?
s042267557
p02389
u766693979
1529782448
Python
Python
py
Runtime Error
0
0
75
a = input() b = input() print( int(a) * int(b), 2 * ( int(a) + int(b) ) )
Traceback (most recent call last): File "/tmp/tmpk43vnmln/tmpbfbkci5y.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s899017622
p02389
u766693979
1529783157
Python
Python
py
Runtime Error
0
0
74
a, b = input().split() print( int(a) * int(b), 2 * ( int(a) + int(b) ) )
Traceback (most recent call last): File "/tmp/tmppcoo8ei4/tmp39tbvsoj.py", line 1, in <module> a, b = input().split() ^^^^^^^ EOFError: EOF when reading a line
s941999554
p02389
u766693979
1529784237
Python
Python
py
Runtime Error
0
0
92
line = input().split() a = int( line[0] ) b = int( line[1] ) print( a * b, 2 * ( a + b ) )
Traceback (most recent call last): File "/tmp/tmphl1ua6r2/tmpnxzbm54g.py", line 1, in <module> line = input().split() ^^^^^^^ EOFError: EOF when reading a line
s258653586
p02389
u766693979
1529784350
Python
Python
py
Runtime Error
0
0
106
line = input().split() a = int( line[0] ) b = int( line[1] ) print( str( a * b ), str( 2 * ( a + b ) ) )
Traceback (most recent call last): File "/tmp/tmp1rcmc1c2/tmp_ylxzhjs.py", line 1, in <module> line = input().split() ^^^^^^^ EOFError: EOF when reading a line
s896065796
p02389
u766693979
1529784404
Python
Python
py
Runtime Error
0
0
113
line = input().split() a = int( line[0] ) b = int( line[1] ) print( str( a * b ) + " " + str( 2 * ( a + b ) ) )
Traceback (most recent call last): File "/tmp/tmpdnc3v_mm/tmp_p8t7tcy.py", line 1, in <module> line = input().split() ^^^^^^^ EOFError: EOF when reading a line
s935832612
p02389
u766693979
1529784502
Python
Python
py
Runtime Error
0
0
57
a,b=[int(x) for x in input().split()] print(a*b,(a+b)*2)
Traceback (most recent call last): File "/tmp/tmp8fkwlfnt/tmp374bnm_t.py", line 1, in <module> a,b=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s624829208
p02389
u123669391
1529951249
Python
Python
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/tmp5j1yso94/tmpp45rhvho.py", line 1, in <module> a, b =map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s095369268
p02389
u123669391
1529951260
Python
Python
py
Runtime Error
0
0
53
a, b =map(int, input().split()) print(a*b, 2*(a+b))
Traceback (most recent call last): File "/tmp/tmp7d8o5dsz/tmpa6wm4ak4.py", line 1, in <module> a, b =map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s270343716
p02389
u629779621
1529961325
Python
Python3
py
Runtime Error
0
0
38
print(float(input()) * float(input())
File "/tmp/tmpyugnz_5l/tmp6gzrenfg.py", line 1 print(float(input()) * float(input()) ^ SyntaxError: '(' was never closed
s669767253
p02389
u119807026
1529972858
Python
Python3
py
Runtime Error
0
0
74
a, b = map(int, input().split()) d = a*b c = a*2 + b*2 print(d +" " +c)
Traceback (most recent call last): File "/tmp/tmp4xd43fcl/tmp62mqyhcs.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line