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
s321449467
p02389
u822442916
1474198261
Python
Python3
py
Runtime Error
0
0
117
a,b=map(int,input().split()) if a<b : print('a<b') elif a>b : print('a>b') else a=b : print('a==b')
File "/tmp/tmpqr18vjbg/tmpqf9maf7u.py", line 7 else a=b : ^ SyntaxError: expected ':'
s276578376
p02389
u675500862
1474267735
Python
Python
py
Runtime Error
0
0
49
x = input() y = input() print x * y, (x + y) * 2
File "/tmp/tmp15gj7vxm/tmp40xpau1a.py", line 4 print x * y, (x + y) * 2 ^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s224932161
p02389
u135273382
1474780796
Python
Python3
py
Runtime Error
0
0
59
a, b = map(int, raw_input().split()) print(a*b,' ',2*(a+b))
Traceback (most recent call last): File "/tmp/tmp6515uxau/tmpbtc65dns.py", line 1, in <module> a, b = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s449925453
p02389
u135273382
1474780903
Python
Python3
py
Runtime Error
0
0
55
a, b = map(int, raw_input().split()) print(a*b,2*(a+b))
Traceback (most recent call last): File "/tmp/tmp9pzf_vm4/tmpx7_4rws5.py", line 1, in <module> a, b = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s451697545
p02389
u419760455
1475219513
Python
Python3
py
Runtime Error
0
0
83
data = int(input().split()) S = data[0]*data[1] L = 2*(data[0]+data[1]) print(S, L)
Traceback (most recent call last): File "/tmp/tmpkm1rig2r/tmpye5nenbn.py", line 1, in <module> data = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s258266205
p02389
u419760455
1475219527
Python
Python3
py
Runtime Error
0
0
88
data = int(input().split()) S = data[0]*data[1] L = 2*(data[0]+data[1]) print(int(S, L))
Traceback (most recent call last): File "/tmp/tmpjitxgxw7/tmp5iebukb8.py", line 1, in <module> data = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s514113529
p02389
u494314211
1475342915
Python
Python3
py
Runtime Error
0
0
51
a,b=map(int,input().split()) print(a*b+" "+(a+b)*2)
Traceback (most recent call last): File "/tmp/tmpvis9o_z2/tmpuz2lfp8a.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s164738216
p02389
u352273463
1475413972
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/tmpmjw0zhud/tmpztkwrhw1.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s128189138
p02389
u352273463
1475415575
Python
Python3
py
Runtime Error
0
0
49
a,b=map(int,input().split()) print(a*b (a+b)*2\n)
File "/tmp/tmpvhb8dzr8/tmpsfzzukk1.py", line 2 print(a*b (a+b)*2\n) ^ SyntaxError: unexpected character after line continuation character
s983739434
p02389
u159356473
1475721348
Python
Python3
py
Runtime Error
0
0
269
#coding: UTF-8 def Rectangle_Area(a,b): return a*b def Rectangle_Length(a,b): return 2*a+2*b if __name__=="__main__": a = input() b = input() area = Rectangle_Area(int(a),int(b)) length = Rectangle_Length(int(a),int(b)) print(area,length)
Traceback (most recent call last): File "/tmp/tmprsh1pqha/tmp_unb8gpd.py", line 10, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s077685678
p02389
u159356473
1475721371
Python
Python3
py
Runtime Error
0
0
269
#coding: UTF-8 def Rectangle_Area(a,b): return a*b def Rectangle_Length(a,b): return 2*a+2*b if __name__=="__main__": a = input() b = input() area = Rectangle_Area(int(a),int(b)) length = Rectangle_Length(int(a),int(b)) print(area,length)
Traceback (most recent call last): File "/tmp/tmpbc1o8blx/tmp7ildc4jj.py", line 10, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s986197777
p02389
u159356473
1475721557
Python
Python3
py
Runtime Error
0
0
182
#coding: UTF-8 def Rectangle(a,b): return a*b,2*a+2*b if __name__=="__main__": a = input() b = input() area,length = Rectangle(int(a),int(b)) print(area,length)
Traceback (most recent call last): File "/tmp/tmpvu760ngf/tmpmcyi4wos.py", line 7, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s062662374
p02389
u159356473
1475721619
Python
Python3
py
Runtime Error
0
0
182
#coding: UTF-8 def Rectangle(a,b): return a*b,2*(a+b) if __name__=="__main__": a = input() b = input() area,length = Rectangle(int(a),int(b)) print(area,length)
Traceback (most recent call last): File "/tmp/tmp85gxgt3l/tmpyv5j5l0u.py", line 7, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s702208439
p02389
u226541377
1476360012
Python
Python3
py
Runtime Error
0
0
103
a = int(input()) b = int(input()) menseki = a * b print(menseki) nagasa = a + a + b + b print(nagasa)
Traceback (most recent call last): File "/tmp/tmp45g6jr42/tmpxnfwthh9.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s648806122
p02389
u757827098
1476517768
Python
Python3
py
Runtime Error
0
0
67
a,b = (int(i) for i in input.split()) print(a * b , a * 2 + b * 2)
Traceback (most recent call last): File "/tmp/tmpjouy2jzy/tmpba17bq5l.py", line 1, in <module> a,b = (int(i) for i in input.split()) ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s101469621
p02389
u757827098
1476517853
Python
Python3
py
Runtime Error
0
0
67
a,b = [int(i) for i in input.split()] print(a * b , a * 2 + b * 2)
Traceback (most recent call last): File "/tmp/tmptihpuvvp/tmpzh5p0bwx.py", line 1, in <module> a,b = [int(i) for i in input.split()] ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s315276290
p02389
u801346721
1476599912
Python
Python3
py
Runtime Error
0
0
40
a=int(input()) b=int(input()) print(a*b)
Traceback (most recent call last): File "/tmp/tmp4rg5ol5n/tmphr7es6yp.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s036652596
p02389
u996758922
1476832993
Python
Python3
py
Runtime Error
0
0
44
a = int(input()) b = int(input()) print(a*b)
Traceback (most recent call last): File "/tmp/tmp5bfx5x9y/tmpzx5gc672.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s818767563
p02389
u996758922
1476833318
Python
Python3
py
Runtime Error
0
0
76
a = int(input()) b = int(input()) print(str(a*b)+" ", end="") print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpe_t_88cc/tmpgr11u8zv.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s241472239
p02389
u175111751
1477420986
Python
Python3
py
Runtime Error
0
0
81
a, b = [int(x) for x in input().split(' ')] print('{0} {1}').format(a*b, (a+b)*2)
Traceback (most recent call last): File "/tmp/tmpij3jdet2/tmp831dt4gj.py", line 1, in <module> a, b = [int(x) for x in input().split(' ')] ^^^^^^^ EOFError: EOF when reading a line
s906718254
p02389
u831244171
1477483622
Python
Python
py
Runtime Error
0
0
71
a = input() b = input() c = a * b d = 2 * (a + b) print (int(c) int(d))
File "/tmp/tmpsubasot9/tmpq0_r49co.py", line 5 print (int(c) int(d)) ^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s132838366
p02389
u236295012
1477493928
Python
Python3
py
Runtime Error
0
0
82
x=input(vertical:) y=input(horizontal:) z=int(x)*int(y) l=int(x)+int(y) print(z l)
File "/tmp/tmp_22zalns/tmpt1m6x5cn.py", line 1 x=input(vertical:) ^ SyntaxError: invalid syntax
s946524643
p02389
u236295012
1477494018
Python
Python3
py
Runtime Error
0
0
52
x=() y=() z=int(x)*int(y) l=int(x)+int(y) print(z l)
File "/tmp/tmp3phvlumw/tmp2r_w3omk.py", line 5 print(z l) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s511558560
p02389
u250482563
1477543880
Python
Python3
py
Runtime Error
0
0
52
a. b = map(int, input().split()) print(a*b, 2*(a+b))
Traceback (most recent call last): File "/tmp/tmp5ru3419e/tmp42of4489.py", line 1, in <module> a. b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s661933062
p02389
u936478090
1477828949
Python
Python3
py
Runtime Error
0
0
63
a = int(input()) b = int(input()) print(a*b, 2*(a+b), end=' ')
Traceback (most recent call last): File "/tmp/tmpslncqcsi/tmp14bs6567.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s345617364
p02389
u936478090
1477829394
Python
Python3
py
Runtime Error
0
0
61
a = int(input()) b = int(input()) print(a*b, 2*(a+b), end='')
Traceback (most recent call last): File "/tmp/tmpmroi5wsh/tmp5tyjb1xu.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s182048995
p02389
u936478090
1477829429
Python
Python3
py
Runtime Error
0
0
75
a = input()) b = input()) a = int(a) b = int(b) print(a*b, 2*(a+b), end='')
File "/tmp/tmpgvwr0vvu/tmp3m0ijhrs.py", line 1 a = input()) ^ SyntaxError: unmatched ')'
s542931046
p02389
u967794515
1477831088
Python
Python
py
Runtime Error
0
0
108
# coding: utf-8 # Here your code ! a = input() b = input() men = a*b syu = a*2 + b*2 print men , print syu ,
File "/tmp/tmpfc1fx47a/tmpycqz9bq8.py", line 7 print men , ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s941875520
p02389
u967794515
1477831551
Python
Python3
py
Runtime Error
0
0
107
# coding: utf-8 # Here your code ! a = input() b = input() x = a*b y = a*2 + b*2 print "%d"%x, print "%d"%y
File "/tmp/tmpynoymcsh/tmp5p0_eoj1.py", line 7 print "%d"%x, ^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s992117711
p02389
u967794515
1477832294
Python
Python3
py
Runtime Error
0
0
117
# coding: utf-8 # Here your code ! x = input().split() a = x[0] b = x[1] men = a*b syu = a*2+b*2 print men, print syu
File "/tmp/tmpvwism511/tmpdcigf501.py", line 8 print men, ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s954560790
p02389
u967794515
1477832329
Python
Python3
py
Runtime Error
0
0
116
# coding: utf-8 # Here your code ! x = input().split() a = x[0] b = x[1] men = a*b syu = a*2+b*2 print men print syu
File "/tmp/tmp59rddgqi/tmpnkynazgl.py", line 8 print men ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s450359276
p02389
u967794515
1477832712
Python
Python3
py
Runtime Error
0
0
103
# coding: utf-8 # Here your code ! x = input().split() a = x[0] b = x[1] m = a*b s = a*2+b*2 print m, s
File "/tmp/tmp0oidr1nf/tmpt3m8h1x7.py", line 8 print m, s ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s987820155
p02389
u967794515
1477832973
Python
Python3
py
Runtime Error
0
0
106
# coding: utf-8 # Here your code ! a, b = map(int, input().split()) m = a * b s = a * 2 + b * 2 print m, s
File "/tmp/tmpy4wr28lw/tmpi821wuuu.py", line 6 print m, s ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s397797949
p02389
u967794515
1477833205
Python
Python3
py
Runtime Error
0
0
106
# coding: utf-8 # Here your code ! a, b = map(int, input().split()) m = a * b s = a * 2 + b * 2 print m, s
File "/tmp/tmpqqxv6yu1/tmpaeh_y6cn.py", line 6 print m, s ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s631831593
p02389
u967794515
1477833249
Python
Python3
py
Runtime Error
0
0
106
# coding: utf-8 # Here your code ! a, b = map(int, input().split()) m = a * b s = a * 2 + b * 2 print m, s
File "/tmp/tmpq2shujdd/tmpl91mv5k4.py", line 6 print m, s ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s496741494
p02389
u967794515
1477833589
Python
Python3
py
Runtime Error
0
0
110
# coding: utf-8 # Here your code ! a, b = map(int, raw_input().split()) m = a * b s = a * 2 + b * 2 print(s,m)
Traceback (most recent call last): File "/tmp/tmpxv663qwg/tmpmzcytagm.py", line 3, in <module> a, b = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s120089400
p02389
u460911277
1478268671
Python
Python3
py
Runtime Error
0
0
65
a=0 b=0 a=int(input()) b=int(input()) print(2*a+2*b) print(a*b)
Traceback (most recent call last): File "/tmp/tmpf_9mkgu0/tmpg1bzqztt.py", line 4, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s113626400
p02389
u460911277
1478268736
Python
Python3
py
Runtime Error
0
0
64
a=0 b=0 a=int(input()) b=int(input()) print(a*b) print(2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpn2dg9s_d/tmp_s5y1tqq.py", line 4, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s026751046
p02389
u326248180
1478755706
Python
Python3
py
Runtime Error
0
0
45
ary = input().split(" ") print(ary(0)*ary(1))
Traceback (most recent call last): File "/tmp/tmp9op7h7rl/tmpsmgp8rky.py", line 1, in <module> ary = input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s741696113
p02389
u326248180
1478755798
Python
Python3
py
Runtime Error
0
0
76
ary = input().split(" ") print(ary[0]*ary[1]) print((ary[0]*2) + (ary[1]*2))
Traceback (most recent call last): File "/tmp/tmp6c5u19xg/tmpxeskyd62.py", line 1, in <module> ary = input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s623536050
p02389
u326248180
1478755845
Python
Python3
py
Runtime Error
0
0
77
ary = input().split(" ") print(ary[0]*ary[1] + " " + (ary[0]*2) + (ary[1]*2))
Traceback (most recent call last): File "/tmp/tmpx6whpit_/tmpiq176rlj.py", line 1, in <module> ary = input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s739793197
p02389
u326248180
1478755956
Python
Python3
py
Runtime Error
0
0
77
x, y = input().split() a = x * y b = x**2 + y**2 print("{} {}".format(a, b))
Traceback (most recent call last): File "/tmp/tmpcgqrx13t/tmpghn93rhb.py", line 1, in <module> x, y = input().split() ^^^^^^^ EOFError: EOF when reading a line
s541352385
p02389
u326248180
1478755975
Python
Python3
py
Runtime Error
0
0
82
x, y = int(input().split()) a = x * y b = x**2 + y**2 print("{} {}".format(a, b))
Traceback (most recent call last): File "/tmp/tmpqktp23d3/tmpzwvtfbfz.py", line 1, in <module> x, y = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s199587612
p02389
u830616709
1479110731
Python
Python3
py
Runtime Error
0
0
82
print("{0}{1}".format(*(lambda a:lambda b:[a*b,a+b])(int(input()))(int(input()))))
Traceback (most recent call last): File "/tmp/tmpfg_3jr6c/tmpatmmcsmn.py", line 1, in <module> print("{0}{1}".format(*(lambda a:lambda b:[a*b,a+b])(int(input()))(int(input())))) ^^^^^^^ EOFError: EOF when reading a line
s183335230
p02389
u086566114
1479298144
Python
Python
py
Runtime Error
0
0
100
import sys map(int, [a,b]) = sys.stdin.readlines().strip() print("{0} {1}".format(a+b, 2*a + 2*b))
File "/tmp/tmpl5931ng0/tmpr8qilzu5.py", line 3 map(int, [a,b]) = sys.stdin.readlines().strip() ^^^^^^^^^^^^^^^ SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
s633429618
p02389
u086566114
1479298169
Python
Python
py
Runtime Error
0
0
109
import sys [a,b] = [int(x) for x in sys.stdin.readlines().strip()] print("{0} {1}".format(a+b, 2*a + 2*b))
Traceback (most recent call last): File "/tmp/tmp7oqbn1vw/tmph06dg8c0.py", line 3, in <module> [a,b] = [int(x) for x in sys.stdin.readlines().strip()] ^^^^^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'list' object has no attribute 'strip'
s397152018
p02389
u086566114
1479298275
Python
Python
py
Runtime Error
0
0
117
import sys [a,b] = [int(x) for x in sys.stdin.readlines().strip().split()] print("{0} {1}".format(a+b, 2*a + 2*b))
Traceback (most recent call last): File "/tmp/tmpspu07nj8/tmperqhi256.py", line 3, in <module> [a,b] = [int(x) for x in sys.stdin.readlines().strip().split()] ^^^^^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'list' object has no attribute 'strip'
s947219446
p02389
u226541377
1479693949
Python
Python3
py
Runtime Error
0
0
52
A,B =map(int, raw_input().split()) print A*B (A+B)*2
File "/tmp/tmpc9lh0qjc/tmpkcdwq_8s.py", line 2 print A*B (A+B)*2 ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s290915933
p02389
u226541377
1479694309
Python
Python3
py
Runtime Error
0
0
56
A,B =map(int, raw_input().split()) print(A*B, A*2 + B*2)
Traceback (most recent call last): File "/tmp/tmp1hke0ovn/tmphp8eki53.py", line 1, in <module> A,B =map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s607688067
p02389
u433605272
1479993120
Python
Python3
py
Runtime Error
0
0
55
a,b=map(int,raw_input(1,2).split()) print(a*b, (a+b)*2)
Traceback (most recent call last): File "/tmp/tmpz92c46hj/tmp50f6pjgl.py", line 1, in <module> a,b=map(int,raw_input(1,2).split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s090365346
p02389
u433605272
1479993942
Python
Python
py
Runtime Error
0
0
65
a,b = map(int, raw_input(1,2).split()) print((a+b),((a+b*2)))
File "/tmp/tmpeh0i3w3i/tmplafu0h_d.py", line 2 print((a+b),((a+b*2))) IndentationError: unexpected indent
s442214293
p02389
u435300817
1480080434
Python
Python3
py
Runtime Error
0
0
121
values = input() height, width = [int(x) for x in values.split()] print(' '.join(height * width, height * 2 + width * 2))
Traceback (most recent call last): File "/tmp/tmpc_6zyeau/tmpk6krxnlg.py", line 1, in <module> values = input() ^^^^^^^ EOFError: EOF when reading a line
s208741238
p02389
u104931506
1480177826
Python
Python3
py
Runtime Error
0
0
51
a, b = map(int, input().split()) print(a*b 2*a+2*b)
File "/tmp/tmp16brcfij/tmp8_kjgaky.py", line 2 print(a*b 2*a+2*b) ^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s801263022
p02389
u660912567
1480200639
Python
Python3
py
Runtime Error
0
0
385
import java.io.BufferedReader; import java.io.InputStreamReader; class Main{ public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] line = br.readLine().split(" "); int x = Integer.parseInt(line[0]); int y = Integer.parseInt(line[1]); System.out.println(x*y+" "+(x+y)*2); } }
File "/tmp/tmpvb1s1un_/tmp81y5s1k3.py", line 4 class Main{ ^ SyntaxError: invalid syntax
s375890270
p02389
u497195381
1480229659
Python
Python
py
Runtime Error
0
0
81
l = map(int,raw_input().split()) print(l[0]*l[1]) print(" ") print(l[0]*2+[1]*2)
Traceback (most recent call last): File "/tmp/tmphtqqcaks/tmpbzfgbt3r.py", line 1, in <module> l = map(int,raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s730498145
p02389
u156024720
1480250518
Python
Python3
py
Runtime Error
0
0
134
import sys ARGV = sys.argv[:] num = ARGV[1] * ARGV[2] length = (ARGV[1] * 2) + (ARGV[2] * 2) print(num + " " + length, end="\n")
Traceback (most recent call last): File "/tmp/tmpwcb5fu0n/tmp3rzzgqks.py", line 4, in <module> num = ARGV[1] * ARGV[2] ~~~~^^^ IndexError: list index out of range
s022398458
p02389
u156024720
1480250699
Python
Python3
py
Runtime Error
0
0
128
import sys a = int(sys.argv[1]) b = int(sys.argv[2]) num = a * b length = (a * 2) + (b * 2) print(num + " " + length, end="\n")
Traceback (most recent call last): File "/tmp/tmp5z4aakbm/tmpd1qyj6_h.py", line 3, in <module> a = int(sys.argv[1]) ~~~~~~~~^^^ IndexError: list index out of range
s988723888
p02389
u156024720
1480250917
Python
Python3
py
Runtime Error
0
0
183
import sys a = int(sys.argv[1]) b = int(sys.argv[2]) if (a >= 1) or (b <= 100): num = a * b length = (a * 2) + (b * 2) print(num + " " + length, end="\n") else: pass
Traceback (most recent call last): File "/tmp/tmp6f7iv9_b/tmpdf982ux_.py", line 3, in <module> a = int(sys.argv[1]) ~~~~~~~~^^^ IndexError: list index out of range
s325291818
p02389
u156024720
1480251093
Python
Python3
py
Runtime Error
0
0
155
a, b = int(input("", "")) if (a >= 1) or (b <= 100): num = a * b length = (a * 2) + (b * 2) print(num + " " + length, end="\n") else: pass
Traceback (most recent call last): File "/tmp/tmpj_rvh4gh/tmphw2d4hwp.py", line 1, in <module> a, b = int(input("", "")) ^^^^^^^^^^^^^ TypeError: input expected at most 1 argument, got 2
s929564977
p02389
u156024720
1480251229
Python
Python3
py
Runtime Error
0
0
157
a, b = int(input().split()) if (a >= 1) or (b <= 100): num = a * b length = (a * 2) + (b * 2) print(num + " " + length, end="\n") else: pass
Traceback (most recent call last): File "/tmp/tmpqfdtkk6u/tmptxig0qrt.py", line 1, in <module> a, b = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s177019506
p02389
u128236306
1480345666
Python
Python3
py
Runtime Error
0
0
98
ab = input().split(" ") a = int(ab[0]) b = int(ab[1]) print("{} {}",format(a * b, a * 2 + b * 2)
File "/tmp/tmpi_4junhr/tmpbq0hirnp.py", line 5 print("{} {}",format(a * b, a * 2 + b * 2) ^ SyntaxError: '(' was never closed
s299750800
p02389
u569672348
1481193262
Python
Python3
py
Runtime Error
0
0
63
a=input() b=input() print(int(a)*int(b)," ",int(a)*2+int(b)*2)
Traceback (most recent call last): File "/tmp/tmp7v5ofq4r/tmp_l_4veoq.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s163196862
p02389
u234837959
1481214814
Python
Python3
py
Runtime Error
0
0
123
list = input().split(' ') area = list[0] * list[1] circum = (list[0] + list[1]) * 2 print(str(area) + " " + str(circum))
Traceback (most recent call last): File "/tmp/tmpma6damoa/tmp2ayz3k76.py", line 1, in <module> list = input().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s323209338
p02389
u234837959
1481214969
Python
Python3
py
Runtime Error
0
0
92
list = input().split(' ') print(str(list[0] * list[1]) + ' ' + str((list[0] + list[1]) * 2)
File "/tmp/tmpt7ycatff/tmpnxcqe7gk.py", line 3 print(str(list[0] * list[1]) + ' ' + str((list[0] + list[1]) * 2) ^ SyntaxError: '(' was never closed
s584411737
p02389
u234837959
1481215159
Python
Python3
py
Runtime Error
0
0
124
list = input().split(' ') x = int(list[0]) * int(list[1]) y = (int(list[0]) + int(list[1])) * 2 print('{} {}').format(x,y)
Traceback (most recent call last): File "/tmp/tmpt1db_p_j/tmpfzcjeqho.py", line 1, in <module> list = input().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s192144333
p02389
u673645945
1481259229
Python
Python
py
Runtime Error
0
0
57
a = raw_input().split(" ") print a[0]*a[1], (a[0]+a[1])*2
File "/tmp/tmpgz_sxf20/tmpulcayc0i.py", line 2 print a[0]*a[1], (a[0]+a[1])*2 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s645035058
p02389
u673645945
1481259323
Python
Python
py
Runtime Error
0
0
89
n = raw_input() a = n.split(" ") b = int(a[0]) c = int(a[1]) print b*c, (b+c)*2
File "/tmp/tmpy77ktg6s/tmp2e_h_9f8.py", line 1 n = raw_input() IndentationError: unexpected indent
s790717097
p02389
u693424532
1481547754
Python
Python3
py
Runtime Error
0
0
48
a,b = map(int,input.split()) print(a*b 2*(a+b))
File "/tmp/tmpuvhnmc6x/tmp5nn0g1yt.py", line 3 print(a*b 2*(a+b)) ^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s923489378
p02389
u693424532
1481548588
Python
Python3
py
Runtime Error
0
0
60
a,b = map(input().split()) print(str(a*b)+" "+str(2*(a+b)))
Traceback (most recent call last): File "/tmp/tmpyttjh9hz/tmpgdbd1ka5.py", line 1, in <module> a,b = map(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s572529255
p02389
u693424532
1481548722
Python
Python3
py
Runtime Error
0
0
72
a,b = map(input().split()) c = a*b d = 2*(a+b) print(str(c)+" "+str(d))
Traceback (most recent call last): File "/tmp/tmpo9by2o5q/tmpgl83xeye.py", line 1, in <module> a,b = map(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s825477261
p02389
u693424532
1481548861
Python
Python3
py
Runtime Error
0
0
57
a,b = map(input().split()) print(str(a*b), str(2(a+b)))
/tmp/tmphb0utm3u/tmp9jj64j75.py:3: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? print(str(a*b), str(2(a+b))) Traceback (most recent call last): File "/tmp/tmphb0utm3u/tmp9jj64j75.py", line 1, in <module> a,b = map(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s945263114
p02389
u693424532
1481548910
Python
Python3
py
Runtime Error
0
0
48
a,b = map(input().split()) print(a*b, 2*(a+b))
Traceback (most recent call last): File "/tmp/tmpg287hmom/tmp0iz59z55.py", line 1, in <module> a,b = map(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s850540009
p02389
u948204119
1481810076
Python
Python
py
Runtime Error
0
0
35
a = input() b = input() print a * b
File "/tmp/tmpe6q4inde/tmp6kez0lm7.py", line 3 print a * b ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s923835321
p02389
u493187281
1482287053
Python
Python3
py
Runtime Error
0
0
72
a=int(input()) b=int(input()) menseki=a*b syu=a*2+b*2 print(menseki,syu)
Traceback (most recent call last): File "/tmp/tmp9tk_4113/tmpekble_00.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s068807454
p02389
u234358002
1482287609
Python
Python3
py
Runtime Error
0
0
56
a=int(input()) b=int(input()) S=a*b L=a*2+b*2 print(S,L)
Traceback (most recent call last): File "/tmp/tmp2e0yqqyp/tmpwqn2devt.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s505817035
p02389
u234358002
1482287764
Python
Python3
py
Runtime Error
0
0
58
a=int(input()) b=int(input()) S=a*b L=a*2+b*2 print(S, ,L)
File "/tmp/tmp2pkm1n5k/tmpwkym2jz2.py", line 5 print(S, ,L) ^ SyntaxError: invalid syntax
s479740513
p02389
u234358002
1482287846
Python
Python3
py
Runtime Error
0
0
77
a=int(input()) b=int(input()) S=a*b L=a*2+b*2 print(S,end="") print(L,end="")
Traceback (most recent call last): File "/tmp/tmp51qcor7o/tmplxekc866.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s943941818
p02389
u234358002
1482288537
Python
Python3
py
Runtime Error
0
0
80
lis=0 S=0 L=0 lis=input().split() S=lis[0]*lis[1] L=lis[0]*2+lis[1]*2 print(S L)
File "/tmp/tmp4ihl472i/tmpb6zpa49r.py", line 7 print(S L) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s123573053
p02389
u234358002
1482288704
Python
Python3
py
Runtime Error
0
0
80
lis=0 S=0 L=0 lis=input().split() S=lis[0]*lis[1] L=lis[0]*2+lis[1]*2 print(S L)
File "/tmp/tmp5kz0f6m5/tmp7d88ptos.py", line 7 print(S L) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s465570082
p02389
u234358002
1482288764
Python
Python3
py
Runtime Error
0
0
85
lis=0 S=0 L=0 lis=int(input().split()) S=lis[0]*lis[1] L=lis[0]*2+lis[1]*2 print(S L)
File "/tmp/tmpt9yu2fnl/tmpd6xjks55.py", line 7 print(S L) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s259938742
p02389
u234358002
1482288820
Python
Python3
py
Runtime Error
0
0
100
lis=0 S=0 L=0 lis=input().split() S=int(lis[0])*int(lis[1]) L=int(lis[0])*2+int(lis[1]*2) print(S L)
File "/tmp/tmpn9c1ldqk/tmpluk8ox4x.py", line 7 print(S L) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s506058474
p02389
u622982727
1482649565
Python
Python3
py
Runtime Error
0
0
49
x=int(input()) y=int(input()) print(x*y,2*(x+y))
Traceback (most recent call last): File "/tmp/tmpdfzf9tx6/tmp55vivl0q.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s583426440
p02389
u622982727
1482649709
Python
Python3
py
Runtime Error
0
0
49
x=int(input()) y=int(input()) print(x*y,2*(x+y))
Traceback (most recent call last): File "/tmp/tmpp5f7_442/tmp443w0mnr.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s893741801
p02389
u622982727
1482649976
Python
Python3
py
Runtime Error
0
0
63
x=int(input()) y=int(input()) print(str(x*y)+" "+str(2*(x+y)))
Traceback (most recent call last): File "/tmp/tmpv02e7_dz/tmpt46woqu7.py", line 1, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s126703875
p02389
u711822251
1482741901
Python
Python3
py
Runtime Error
0
0
43
b=int(input()) a= int(input()) print (a*b);
Traceback (most recent call last): File "/tmp/tmpnlnezefw/tmppyrxg48_.py", line 1, in <module> b=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s846144221
p02389
u019678978
1482853415
Python
Python
py
Runtime Error
0
0
72
a = int(raw_input()) b = int(raw_input()) print(str(a*b) + str((a+b)*2))
Traceback (most recent call last): File "/tmp/tmp_226r0rn/tmpzpfqk4jg.py", line 1, in <module> a = int(raw_input()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s972417581
p02389
u019678978
1482853502
Python
Python
py
Runtime Error
0
0
78
a = int(raw_input()) b = int(raw_input()) print(str(a*b) + ' ' + str((a+b)*2))
Traceback (most recent call last): File "/tmp/tmpqvqsezj4/tmpbhk2fu15.py", line 1, in <module> a = int(raw_input()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s755611612
p02389
u019678978
1482854019
Python
Python
py
Runtime Error
0
0
108
data = raw_input() dlist = data.split(' ') a = int(dlist[0]) b = int(dlist[1]) print((a*b) + ' ' + (a+b)*2)
Traceback (most recent call last): File "/tmp/tmp4giucugf/tmp0athnkck.py", line 1, in <module> data = raw_input() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s813321062
p02389
u019678978
1482854057
Python
Python
py
Runtime Error
0
0
115
data = raw_input() dlist = data.split(' ') a = int(dlist[0]) b = int(dlist[1]) print(str(a*b) + ' ' + str((a+b)*2)
File "/tmp/tmpfrcclsy4/tmp195ucpy7.py", line 6 print(str(a*b) + ' ' + str((a+b)*2) ^ SyntaxError: '(' was never closed
s886837361
p02389
u711765449
1483441851
Python
Python3
py
Runtime Error
0
0
67
# -*- coding:utf-8 -*- x,y = int(input()),int(input()) print(x*y)
Traceback (most recent call last): File "/tmp/tmpzw2i17jl/tmp1hxm1cfr.py", line 3, in <module> x,y = int(input()),int(input()) ^^^^^^^ EOFError: EOF when reading a line
s938710798
p02389
u711765449
1483442285
Python
Python3
py
Runtime Error
30
7536
126
# -*- coding:utf-8 -*- x = input() a = x[0] b = x[2] area = int(a) * int(b) length = int(a)*2 + int(b)*2 print(area,length)
Traceback (most recent call last): File "/tmp/tmpc0bvik7r/tmp2zuits01.py", line 3, in <module> x = input() ^^^^^^^ EOFError: EOF when reading a line
s214824678
p02389
u159126725
1483935769
Python
Python
py
Runtime Error
0
0
22
print '%d %d' % (a, b)
File "/tmp/tmpj15_gazd/tmph4ogcj86.py", line 1 print '%d %d' % (a, b) ^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s864230682
p02389
u159126725
1483935871
Python
Python
py
Runtime Error
0
0
43
a=input() b=input() print '%d %d' % (a, b)
File "/tmp/tmpjniw1eya/tmpo3snjwez.py", line 4 print '%d %d' % (a, b) ^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s198343942
p02389
u159126725
1483935940
Python
Python
py
Runtime Error
0
0
10
print a, b
File "/tmp/tmpjhjdd0ub/tmp52meeu_g.py", line 1 print a, b ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s823753565
p02389
u159126725
1483936142
Python
Python
py
Runtime Error
0
0
40
a, b = input() print a, b print a*a, b*b
File "/tmp/tmpvuj073hv/tmpkkey92vr.py", line 2 print a, b ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s866401155
p02389
u159126725
1483936199
Python
Python
py
Runtime Error
0
0
45
a=input() b=input() print a, b print a*a, b*b
File "/tmp/tmp7_4qvejj/tmp5cybzzm2.py", line 3 print a, b ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s869057405
p02389
u159126725
1483936228
Python
Python
py
Runtime Error
0
0
35
a=input() b=input() print a*a, b*b
File "/tmp/tmpakouzqno/tmpypl106hs.py", line 4 print a*a, b*b ^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s368227708
p02389
u314018844
1484658586
Python
Python3
py
Runtime Error
0
0
140
a = int(input()) b = int(input()) if a<1 or 100<a or b<1 or 100<b: print("Error!") else: area = a*b cir = (a+b)*2 print(area) print(cir)
Traceback (most recent call last): File "/tmp/tmp0vzwktbc/tmpnxeeo1x2.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s911065906
p02389
u314018844
1484659012
Python
Python3
py
Runtime Error
0
0
150
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) print(cir) else: print("Error!")
Traceback (most recent call last): File "/tmp/tmpgxier0ut/tmp03_9p598.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s075289200
p02389
u314018844
1484659248
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/tmpwlhqblkp/tmpvw7kcvq8.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line