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
s552537556
p02389
u180001441
1520793944
Python
Python
py
Runtime Error
0
0
61
1<=a,b<=100 area = a * b length = 2*(a+b) print area, length
File "/tmp/tmpw6mtk4td/tmppfio2twx.py", line 4 print area, length ^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s151169588
p02389
u446404682
1520911425
Python
Python3
py
Runtime Error
0
0
49
n=int(input()) m=int(input()) print(n*m,2*(n+m))
Traceback (most recent call last): File "/tmp/tmpy0if0_5e/tmprhq3iyl6.py", line 1, in <module> n=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s505107036
p02389
u566311709
1521119738
Python
Python3
py
Runtime Error
0
0
75
l = map(int, raw_input().split()) print (l[0] * l[1]), ((l[0] + l[1]) * 2)
Traceback (most recent call last): File "/tmp/tmpkofc5cnn/tmpfp6e6ypt.py", line 1, in <module> l = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s088225393
p02389
u648117624
1521353648
Python
Python
py
Runtime Error
0
0
27
int(a) int(b) print(2a+2b)
File "/tmp/tmp87l8r6_2/tmpyy8o2q7p.py", line 3 print(2a+2b) ^ SyntaxError: invalid decimal literal
s568868606
p02389
u648117624
1521353745
Python
Python3
py
Runtime Error
0
0
28
a = 2 b = 10 print(2a + 2b)
File "/tmp/tmp92fz_dy7/tmpzzpreu41.py", line 3 print(2a + 2b) ^ SyntaxError: invalid decimal literal
s466032123
p02389
u648117624
1521353846
Python
Python3
py
Runtime Error
0
0
38
a = 2 b = 10 print(a*b) print(2a+2b)
File "/tmp/tmpdhv_z1p2/tmpof4jr6gi.py", line 5 print(2a+2b) ^ SyntaxError: invalid decimal literal
s202895611
p02389
u648117624
1521355301
Python
Python3
py
Runtime Error
0
0
115
#coding: UTF-8 x = raw_input().split() y = map(int, x) a = y[0] b = y[1] c1 = a*b c2 = 2(a+b) print(c1, c2)
/tmp/tmps_6i9sez/tmp9bk482wp.py:12: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? c2 = 2(a+b) Traceback (most recent call last): File "/tmp/tmps_6i9sez/tmp9bk482wp.py", line 3, in <module> x = raw_input().split() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s056953721
p02389
u648117624
1521355416
Python
Python3
py
Runtime Error
0
0
110
#coding: UTF-8 x = raw_input().split() y = map(int, x) a = y[0] b = y[1] c = a*b d = (a+b)*2 print(c,d)
Traceback (most recent call last): File "/tmp/tmp49e57si4/tmpuxis08s6.py", line 3, in <module> x = raw_input().split() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s445658490
p02389
u648117624
1521355556
Python
Python3
py
Runtime Error
0
0
104
#coding: UTF-8 x = input().split() y = map(int,x) a = y[0] b = y[1] c = a*b d = (a+b)*2 print(c,d)
Traceback (most recent call last): File "/tmp/tmp0ln3so0z/tmpv0ixgq_w.py", line 3, in <module> x = input().split() ^^^^^^^ EOFError: EOF when reading a line
s856088183
p02389
u706023549
1521363472
Python
Python3
py
Runtime Error
0
0
80
l = map(int, input().split()) print(str(l[0]*l[1]) + " " + str(l[0]*2+l[1]*2))
File "/tmp/tmpobe7h38j/tmpqirqwuyj.py", line 1 l = map(int, input().split()) IndentationError: unexpected indent
s330668699
p02389
u921303861
1521382764
Python
Python3
py
Runtime Error
0
0
64
A, B = map(int, input().split()) print((A*B) + " " + (2*A+2*B))
Traceback (most recent call last): File "/tmp/tmp9i3h5cun/tmp9vjc2g0t.py", line 1, in <module> A, B = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s255812565
p02389
u178477792
1521432888
Python
Python3
py
Runtime Error
0
0
135
nums = list(map(int, input().split(" "))) area = nums[0] * nums[1] perimeter = nums[0] * 2 + nums[1] * 2 print(area + " " + perimeter)
Traceback (most recent call last): File "/tmp/tmpi3algxxd/tmp1wxyqzhh.py", line 1, in <module> nums = list(map(int, input().split(" "))) ^^^^^^^ EOFError: EOF when reading a line
s728015503
p02389
u227344542
1521464988
Python
Python3
py
Runtime Error
0
0
55
a=int(input()) b=int(input()) print((a*b)+' '+(2a+2b))
File "/tmp/tmpsgpkr27t/tmp3cyvaffe.py", line 3 print((a*b)+' '+(2a+2b)) ^ SyntaxError: invalid decimal literal
s789060157
p02389
u227344542
1521465076
Python
Python3
py
Runtime Error
0
0
64
a=int(input()) b=int(input()) print( str(a*b)+' '+str(a*2+b*2))
Traceback (most recent call last): File "/tmp/tmpz8xuwdpg/tmpybn9_ix4.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s103080625
p02389
u227344542
1521465093
Python
Python3
py
Runtime Error
0
0
63
a=int(input()) b=int(input()) print(str(a*b)+' '+str(a*2+b*2))
Traceback (most recent call last): File "/tmp/tmpkt2lpkyy/tmpnpneiidc.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s565247856
p02389
u464859367
1521707825
Python
Python3
py
Runtime Error
0
0
82
n = input().split() print(str(n[0] * n[1]) + " " + str((n[0] * 2) + (n[1] * 2)))
Traceback (most recent call last): File "/tmp/tmppfnhwc7o/tmpko_um1k0.py", line 1, in <module> n = input().split() ^^^^^^^ EOFError: EOF when reading a line
s740403974
p02389
u662488567
1522077857
Python
Python3
py
Runtime Error
0
0
25
print(int(input()) ** 3)
Traceback (most recent call last): File "/tmp/tmp1pk9m7kd/tmp25pjny6e.py", line 1, in <module> print(int(input()) ** 3) ^^^^^^^ EOFError: EOF when reading a line
s723323652
p02389
u662488567
1522077909
Python
Python3
py
Runtime Error
0
0
25
print(int(input()) ** 3)
Traceback (most recent call last): File "/tmp/tmpnypfh8tv/tmp6kan2c3t.py", line 1, in <module> print(int(input()) ** 3) ^^^^^^^ EOFError: EOF when reading a line
s128391503
p02389
u621084859
1522314841
Python
Python3
py
Runtime Error
0
0
45
a=int(input()) b=int(input()) print(2*a 2*b)
File "/tmp/tmpl8p922cu/tmpjir_tiie.py", line 3 print(2*a 2*b) ^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s220322313
p02389
u621084859
1522314884
Python
Python3
py
Runtime Error
0
0
45
a=int(input()) b=int(input()) print(2*a 2*b)
File "/tmp/tmpv086vw5i/tmpi3cb0wnv.py", line 3 print(2*a 2*b) ^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s304367275
p02389
u621084859
1522366941
Python
Python3
py
Runtime Error
0
0
50
a= int(input()) b= int(input()) print(a*b (a+b)2)
File "/tmp/tmppvk_g3uq/tmpf6e0_0vo.py", line 3 print(a*b (a+b)2) ^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s428433350
p02389
u621084859
1522366995
Python
Python3
py
Runtime Error
0
0
50
a= int(input()) b= int(input()) print(a*b (a+b)2)
File "/tmp/tmphlfqf7ap/tmp623h_8ed.py", line 3 print(a*b (a+b)2) ^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s272207113
p02389
u621084859
1522367019
Python
Python3
py
Runtime Error
0
0
51
a= int(input()) b= int(input()) print(a*b, (a+b)2)
File "/tmp/tmpyh6yc72p/tmpq2e5ehqs.py", line 3 print(a*b, (a+b)2) ^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s063332739
p02389
u621084859
1522367443
Python
Python3
py
Runtime Error
0
0
70
n=input().split(" ") a= int(n[0]) b= int(n[1]) print(a*b+' '+a*a+b*b)
Traceback (most recent call last): File "/tmp/tmp1o7dt8ys/tmp319bdh28.py", line 1, in <module> n=input().split(" ") ^^^^^^^ EOFError: EOF when reading a line
s308764308
p02389
u621084859
1522367499
Python
Python3
py
Runtime Error
0
0
66
n=input().split(" ") a= int(n[0]) b= int(n[1]) print(a*b a*a+b*b)
File "/tmp/tmp5rw7qrkt/tmp925oo9le.py", line 4 print(a*b a*a+b*b) ^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s401196542
p02389
u621084859
1522370327
Python
Python3
py
Runtime Error
0
0
63
n=input().split() a= int(n[0]) b= int(n[1]) print(a*b (a+b)*2)
Traceback (most recent call last): File "/tmp/tmp220irqjz/tmp6k5dyaus.py", line 1, in <module> n=input().split() ^^^^^^^ EOFError: EOF when reading a line
s178972770
p02389
u621084859
1522376575
Python
Python3
py
Runtime Error
0
0
48
a=int(input()) b=int(input()) print(a*b (a+b)2)
File "/tmp/tmp528nts23/tmpi70bmu99.py", line 3 print(a*b (a+b)2) ^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s526773882
p02389
u621084859
1522376618
Python
Python3
py
Runtime Error
0
0
48
a=int(input()) b=int(input()) print(a*b (a+b)2)
File "/tmp/tmpt5rtccrp/tmp_mzd8cqe.py", line 3 print(a*b (a+b)2) ^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s357684442
p02389
u782670949
1522844746
Python
Python3
py
Runtime Error
0
0
201
sikaku = input() sikaku_list = sikaku.split(' ') sikaku_a = int(sikaku_list[0]) sikaku_b = int(sikaku_list[1]) menseki = sikaku_a * sikaku_b syui = (sikaku_a + sikaku_b) * 2 print(menseki, ' '. syui)
Traceback (most recent call last): File "/tmp/tmpd9j1hewh/tmparfd5fp3.py", line 1, in <module> sikaku = input() ^^^^^^^ EOFError: EOF when reading a line
s283815234
p02389
u114315703
1523130116
Python
Python3
py
Runtime Error
0
0
71
a, b = [int(elem) for elem in input().split] print(a * b, (a + b) * 2)
Traceback (most recent call last): File "/tmp/tmpvp7y2qax/tmpq2tudeth.py", line 1, in <module> a, b = [int(elem) for elem in input().split] ^^^^^^^ EOFError: EOF when reading a line
s797274289
p02389
u244493040
1523182941
Python
Python3
py
Runtime Error
0
0
45
a,b=int(input().split()) print(a*b, 2*(a+b))
Traceback (most recent call last): File "/tmp/tmpexds9qvb/tmpsb_jxyiq.py", line 1, in <module> a,b=int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s618790964
p02389
u244493040
1523182964
Python
Python3
py
Runtime Error
0
0
50
a,b=map(int,(input().split()) print(a*b, 2*(a+b))
File "/tmp/tmpotzwij0u/tmpar1pha1r.py", line 1 a,b=map(int,(input().split()) ^ SyntaxError: '(' was never closed
s715031888
p02389
u781194524
1523327902
Python
Python
py
Runtime Error
0
0
73
x = input() y = input() sum = x*y around = 2*x+2*y input int(sum,around)
File "/tmp/tmphby7u1nl/tmpc27kaj25.py", line 5 input int(sum,around) ^^^ SyntaxError: invalid syntax
s670784320
p02389
u781194524
1523328267
Python
Python3
py
Runtime Error
0
0
73
x = input() y = input() sum = x*y around = 2*x+2*y input int(sum around)
File "/tmp/tmp3vsn7jw5/tmpgkbz1zsf.py", line 5 input int(sum around) ^^^ SyntaxError: invalid syntax
s688205903
p02389
u781194524
1523328915
Python
Python3
py
Runtime Error
0
0
92
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/tmp57qygo2e/tmpaalkn1g0.py", line 11 print c, d ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s162156781
p02389
u781194524
1523328957
Python
Python3
py
Runtime Error
0
0
92
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/tmp_jw9ejpr/tmpmtj4p0zd.py", line 11 print c, d ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s232405660
p02389
u781194524
1523329246
Python
Python3
py
Runtime Error
0
0
53
a,b=[int(x) for x input.split()] print(a*b,a*2+b*2)
File "/tmp/tmp7pnuixog/tmp2waq0p3e.py", line 1 a,b=[int(x) for x input.split()] ^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s526220685
p02389
u359372421
1523350651
Python
Python3
py
Runtime Error
0
0
95
s = input() ss = s.plit(" ") a = int(ss[0]) b = int(ss[1]) print("{} {}".format(a*b, 2*(a+b))
File "/tmp/tmpm036zx22/tmp5m4sp5pm.py", line 5 print("{} {}".format(a*b, 2*(a+b)) ^ SyntaxError: '(' was never closed
s224773746
p02389
u843169619
1523431110
Python
Python3
py
Runtime Error
0
0
117
line = int(input().split) area = line[0] * line[1] % 2 peri = line[0] * 2 + line[1] * 2 print(area + ' ' + peri)
Traceback (most recent call last): File "/tmp/tmpddctzxcd/tmp6239mtou.py", line 2, in <module> line = int(input().split) ^^^^^^^ EOFError: EOF when reading a line
s484295973
p02389
u843169619
1523431644
Python
Python3
py
Runtime Error
0
0
106
x = input() a = int( x.split(' ')[0] ) b = int( x.split(' ')[1] ) print( a * b, (a + b) * 2 )
File "/tmp/tmpnncm1b3e/tmpf4ff_hlz.py", line 2 a = int( x.split(' ')[0] ) IndentationError: unexpected indent
s916332051
p02389
u843169619
1523431658
Python
Python
py
Runtime Error
0
0
106
x = input() a = int( x.split(' ')[0] ) b = int( x.split(' ')[1] ) print( a * b, (a + b) * 2 )
File "/tmp/tmpredej2qi/tmpqkmqnpfu.py", line 2 a = int( x.split(' ')[0] ) IndentationError: unexpected indent
s295119138
p02389
u843169619
1523431680
Python
Python3
py
Runtime Error
0
0
96
x = input() a = int( x.split[0] ) b = int( x.split[1] ) print( a * b, (a + b) * 2 )
File "/tmp/tmp_i107qqb/tmpf__q_v0w.py", line 2 a = int( x.split[0] ) IndentationError: unexpected indent
s145814763
p02389
u461923444
1523436617
Python
Python3
py
Runtime Error
0
0
47
file:///jugyou/ise/16D8104004E/c_rectangle.py
File "/tmp/tmp4rpp1rvl/tmpqahiovwf.py", line 1 file:///jugyou/ise/16D8104004E/c_rectangle.py ^ SyntaxError: invalid decimal literal
s952707857
p02389
u461923444
1523436861
Python
Python3
py
Runtime Error
0
0
65
a=int(input("a:")) b=int(input("b:")) s=a*b m=2*a+2*b print(s,m)
Traceback (most recent call last): File "/tmp/tmpiiu6abx4/tmp54ote62x.py", line 1, in <module> a=int(input("a:")) ^^^^^^^^^^^ EOFError: EOF when reading a line
a:
s141312459
p02389
u213830293
1523437103
Python
Python3
py
Runtime Error
0
0
59
a=int(input("a:")) b=int(input("b:")) area=a*b pm=2*a+2*b
Traceback (most recent call last): File "/tmp/tmphxcb63gd/tmpi7rgovdt.py", line 1, in <module> a=int(input("a:")) ^^^^^^^^^^^ EOFError: EOF when reading a line
a:
s218837940
p02389
u213830293
1523437143
Python
Python3
py
Runtime Error
0
0
73
a=int(input("a:")) b=int(input("b:")) area=a*b pm=2*a+2*b print(area,pm)
Traceback (most recent call last): File "/tmp/tmpct3ynavw/tmpi1il1bqb.py", line 1, in <module> a=int(input("a:")) ^^^^^^^^^^^ EOFError: EOF when reading a line
a:
s322425883
p02389
u687567104
1523447587
Python
Python
py
Runtime Error
0
0
61
a = int(input()) b = int(input()) print(a*b) print(a+a+b+b)
Traceback (most recent call last): File "/tmp/tmp1b2jc95w/tmp39rl7jnq.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s964887870
p02389
u687567104
1523447655
Python
Python
py
Runtime Error
0
0
78
a = int(input()) b = int(input()) sum = (a*2) + (b*2) print(a*b) print(sum)
Traceback (most recent call last): File "/tmp/tmprtpce6nk/tmprtd4ytzz.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s380459176
p02389
u687567104
1523447815
Python
Python
py
Runtime Error
0
0
78
a = int(input()) b = int(input()) sum = (a*2) + (b*2) print(a*b) print(sum)
Traceback (most recent call last): File "/tmp/tmp6b3kdo52/tmpdv0vaoh8.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s812751849
p02389
u687567104
1523447911
Python
Python
py
Runtime Error
0
0
78
a = int(input()) b = int(input()) sum = (a*2) + (b*2) print(a*b) print(sum)
Traceback (most recent call last): File "/tmp/tmp1pb83533/tmp7a_0n60r.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s541851082
p02389
u687567104
1523447911
Python
Python
py
Runtime Error
0
0
78
a = int(input()) b = int(input()) sum = (a*2) + (b*2) print(a*b) print(sum)
Traceback (most recent call last): File "/tmp/tmpcgfxci8f/tmpsl14exxm.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s712032178
p02389
u687567104
1523447981
Python
Python
py
Runtime Error
0
0
90
a = int(input()) b = int(input()) sum = (a*2) + (b*2) sum2 = a*b print(sum2) print(sum)
Traceback (most recent call last): File "/tmp/tmp_7o29bqv/tmpgpp0cuxk.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s358534639
p02389
u687567104
1523448092
Python
Python
py
Runtime Error
0
0
69
a = int(input()) b = int(input()) print(a*b) print( (a*2) + (b*2) )
Traceback (most recent call last): File "/tmp/tmpljep_2iy/tmp5rhkrcy6.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s854560165
p02389
u687567104
1523448167
Python
Python
py
Runtime Error
0
0
69
a = int(input()) b = int(input()) print(a*b) print( (a*2) + (b*2) )
Traceback (most recent call last): File "/tmp/tmp3xa_9n9_/tmp96h3jag9.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s760843251
p02389
u687567104
1523448361
Python
Python
py
Runtime Error
0
0
69
a = int(input()) b = int(input()) print(a*b) print( (a*2) + (b*2) )
Traceback (most recent call last): File "/tmp/tmphx7sy_cd/tmpms3p929n.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s344857138
p02389
u687567104
1523448414
Python
Python
py
Runtime Error
0
0
62
a = int(input()) b = int(input()) print(a*b, (a*2) + (b*2) )
Traceback (most recent call last): File "/tmp/tmp8ax1zyc7/tmplbt98ipr.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s272049640
p02389
u638961225
1523453620
Python
Python3
py
Runtime Error
0
0
278
#include<iostream> void cal_area(a,b){ return a*b; } void cal_parimeter(a,b){ return 2*(a+b); } output(a,b){ print(a << " " << b); } void input(){ std::cin >> a >> b; output(cal_area(a,b), cal_parimeter(a,b)); } int main(){ input(); return 0; }
File "/tmp/tmp7wh_fw0l/tmpsakqjztx.py", line 4 void cal_area(a,b){ ^^^^^^^^ SyntaxError: invalid syntax
s107482299
p02389
u638961225
1523453949
Python
Python3
py
Runtime Error
0
0
291
#include<iostream> void cal_area(a,b){ return a*b; } void cal_parimeter(a,b){ return 2*(a+b); } output(a,b){ print(a << " " << b); } void input(){ int a, b; std::cin >> a >> b; output(cal_area(a,b), cal_parimeter(a,b)); } int main(){ input(); return 0; }
File "/tmp/tmpyyem47d3/tmpn60no4zn.py", line 4 void cal_area(a,b){ ^^^^^^^^ SyntaxError: invalid syntax
s028082056
p02389
u861315468
1523457413
Python
Python3
py
Runtime Error
0
0
57
a=float(input()) b=float(input()) print(a*b," ",2*a+2*b)
Traceback (most recent call last): File "/tmp/tmp_pzchtbx/tmpicjwb8fb.py", line 1, in <module> a=float(input()) ^^^^^^^ EOFError: EOF when reading a line
s400114771
p02389
u861315468
1523457724
Python
Python3
py
Runtime Error
0
0
53
a=float(input) b=float(input) print(a*b," ",2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpbrghvk_u/tmpebfmhhay.py", line 1, in <module> a=float(input) ^^^^^^^^^^^^ TypeError: float() argument must be a string or a real number, not 'builtin_function_or_method'
s149292830
p02389
u861315468
1523458130
Python
Python3
py
Runtime Error
0
0
57
a=float(input()) b=float(input()) print(a*b," ",2*(a+b))
Traceback (most recent call last): File "/tmp/tmpdjl87g81/tmpgrd1famy.py", line 1, in <module> a=float(input()) ^^^^^^^ EOFError: EOF when reading a line
s714747303
p02389
u861315468
1523458277
Python
Python
py
Runtime Error
0
0
57
a=float(input()) b=float(input()) print(a*b," ",2*(a+b))
Traceback (most recent call last): File "/tmp/tmp2zh4sdk3/tmpmnlefo_a.py", line 1, in <module> a=float(input()) ^^^^^^^ EOFError: EOF when reading a line
s205791194
p02389
u481571686
1523498098
Python
Python
py
Runtime Error
0
0
61
a=float(input()) b=float(input()) c=a*b d=(a+b)*2 print(c,d)
Traceback (most recent call last): File "/tmp/tmpus9_tfem/tmpprrn3o73.py", line 1, in <module> a=float(input()) ^^^^^^^ EOFError: EOF when reading a line
s761018971
p02389
u481571686
1523498148
Python
Python
py
Runtime Error
0
0
61
a=float(input()) b=float(input()) c=a*b d=(a+b)*2 print(c,d)
Traceback (most recent call last): File "/tmp/tmpn8nuxerb/tmpbgys8rn0.py", line 1, in <module> a=float(input()) ^^^^^^^ EOFError: EOF when reading a line
s803990969
p02389
u481571686
1523498432
Python
Python
py
Runtime Error
0
0
56
a,b=map(int,input().split()) c=a*b d=(a+b)*2 print(c,d)
Traceback (most recent call last): File "/tmp/tmp247vwufv/tmpnbdtysnt.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s723151660
p02389
u481571686
1523498548
Python
Python
py
Runtime Error
0
0
56
a,b=map(int,input().split()) c=a*b d=(a+b)*2 print(c,d)
Traceback (most recent call last): File "/tmp/tmp_jx831rg/tmp29ulf0vr.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s852182432
p02389
u398978447
1523501336
Python
Python3
py
Runtime Error
0
0
129
print("縦と横の長さを入力") a=int(input("a:")) b=int(input("b:")) print("面積:",a*b) print("周の長さ",a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpq5ai4878/tmpwvwgcccp.py", line 3, in <module> a=int(input("a:")) ^^^^^^^^^^^ EOFError: EOF when reading a line
縦と横の長さを入力 a:
s343800262
p02389
u398978447
1523503150
Python
Python3
py
Runtime Error
0
0
104
print("縦と横の長さを入力") a=int(input("a:")) b=int(input("b:")) print(a*b) print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmp4dzissvz/tmpaop9pa33.py", line 3, in <module> a=int(input("a:")) ^^^^^^^^^^^ EOFError: EOF when reading a line
縦と横の長さを入力 a:
s843423229
p02389
u398978447
1523503216
Python
Python3
py
Runtime Error
0
0
67
a=int(input("a:")) b=int(input("b:")) print(a*b) print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpcknq49bj/tmptr15cfi3.py", line 2, in <module> a=int(input("a:")) ^^^^^^^^^^^ EOFError: EOF when reading a line
a:
s605216759
p02389
u058074886
1523505745
Python
Python
py
Runtime Error
0
0
149
x=input().split() a=int(x[0]) b=int(x[1]) 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/tmpha75zvxr/tmp_9dumnfg.py", line 1, in <module> x=input().split() ^^^^^^^ EOFError: EOF when reading a line
s332545925
p02389
u372207695
1523512183
Python
Python3
py
Runtime Error
0
0
82
i = input() i.split() a = i[0] b = i[1] s = a * b l = 2 * a + 2 * b print(s,l)
Traceback (most recent call last): File "/tmp/tmprmlce9tv/tmpu8hf2le3.py", line 1, in <module> i = input() ^^^^^^^ EOFError: EOF when reading a line
s206903213
p02389
u372207695
1523512211
Python
Python3
py
Runtime Error
20
5592
92
i = input() i.split() a = int(i[0]) b = int(i[2]) s = a * b l = 2 * a + 2 * b print(s,l)
Traceback (most recent call last): File "/tmp/tmp3_xiq37x/tmp2qo85cc9.py", line 1, in <module> i = input() ^^^^^^^ EOFError: EOF when reading a line
s073632666
p02389
u398978447
1523515025
Python
Python3
py
Runtime Error
0
0
108
print("縦と横の長さを入力") a=float(input("a:")) b=float(input("b:")) print(a*b) print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmproemcpwo/tmph8ro0ehj.py", line 3, in <module> a=float(input("a:")) ^^^^^^^^^^^ EOFError: EOF when reading a line
縦と横の長さを入力 a:
s911111387
p02389
u398978447
1523517141
Python
Python3
py
Runtime Error
0
0
97
print("縦と横の長さを入力") a=int(input()) b=int(input()) print(a*b) print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmp7c3xa24g/tmp4_z4x62m.py", line 3, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
縦と横の長さを入力
s001575733
p02389
u638961225
1523536208
Python
Python3
py
Runtime Error
0
0
162
#include <iostream> int main(){ int a, b; std::cin >> a >> b; if(a>=1 && b<=100){ std::cout << a*b << " " << 2*(a+b); } return 0; }
File "/tmp/tmppatdbv1g/tmpilgggxez.py", line 4 int main(){ ^^^^ SyntaxError: invalid syntax
s971198413
p02389
u762302064
1523537467
Python
Python
py
Runtime Error
0
0
135
a,b=map(int,input().split()) while a<=1 or 100<=a: while b<=1 or 100<=b: a,b=int(input()); S=a*b; L=a+a+b+b; print(S,L);
Traceback (most recent call last): File "/tmp/tmp_4vmgzfl/tmp7spsae_9.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s973707457
p02389
u687567104
1523538006
Python
Python
py
Runtime Error
0
0
56
a = int(input()) b = int(input()) print(a*b, 2*(a+b) )
Traceback (most recent call last): File "/tmp/tmpstg3cjr0/tmpcypn5dym.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s859609165
p02389
u687567104
1523538063
Python
Python
py
Runtime Error
0
0
56
a = int(input()) b = int(input()) print(a*b, 2*(a+b) )
Traceback (most recent call last): File "/tmp/tmpw4dzt8q2/tmpklsgs355.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s508962382
p02389
u687567104
1523538103
Python
Python
py
Runtime Error
0
0
63
a = int(input()) b = int(input()) print(a*b) print( 2*(a+b) )
Traceback (most recent call last): File "/tmp/tmp4nef3ufo/tmphvuu69jk.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s314816013
p02389
u762302064
1523538153
Python
Python3
py
Runtime Error
0
0
136
a,b=map(int,input().split()) while a<=1 or 100<=a: while b<=1 or 100<=b: a,b=int(input()); S=a*b; L=a+a+b+b; print(S,L);
Traceback (most recent call last): File "/tmp/tmpsnriglf_/tmpso_mubaj.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s660843783
p02389
u687567104
1523538365
Python
Python
py
Runtime Error
0
0
123
#include<iostream> int main() { int a,b; std::cin >> a >> b; std::cout << a*b << "/n"; std::cout << 2*(a+b); return 0; }
File "/tmp/tmp_u8kpz87/tmpelm61sgi.py", line 3 int main() ^^^^ SyntaxError: invalid syntax
s872771541
p02389
u687567104
1523538538
Python
Python
py
Runtime Error
0
0
57
a = int(input()) b = int(input()) print( a*b, 2*(a+b) )
Traceback (most recent call last): File "/tmp/tmpwa0zo30g/tmpf81jlmgl.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s839638183
p02389
u687567104
1523538613
Python
Python
py
Runtime Error
0
0
57
a = int(input()) b = int(input()) print( a*b, 2*(a+b) )
Traceback (most recent call last): File "/tmp/tmpo9wpemdb/tmpirm54x8n.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s856998479
p02389
u687567104
1523539047
Python
Python
py
Runtime Error
0
0
55
a,b = map(int, input().split()) print( a*b, 2*(a+b) )
Traceback (most recent call last): File "/tmp/tmprkzjihmf/tmpvgbv9b4_.py", line 1, in <module> a,b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s911570661
p02389
u687567104
1523539090
Python
Python
py
Runtime Error
0
0
55
a,b = map(int, input().split()) print( a*b, 2*(a+b) )
Traceback (most recent call last): File "/tmp/tmp085rj1h5/tmpsgagttt7.py", line 1, in <module> a,b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s794013033
p02389
u564105430
1523543369
Python
Python
py
Runtime Error
0
0
57
a=int(input()) b=int(input()) print(a*b) print(2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpoy5zz814/tmpcykx0n6y.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s271540008
p02389
u728137020
1523545023
Python
Python
py
Runtime Error
0
0
115
#16D8101026D 小野誠志郎 rikuya18 python Visual Stadio A=int(input()) B=int(input()) print(A*B," ",2*A+2*B)
Traceback (most recent call last): File "/tmp/tmpwsir5a55/tmp8b3efu28.py", line 3, in <module> A=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s299420506
p02389
u728137020
1523545559
Python
Python
py
Runtime Error
0
0
55
A=int(input()) B=int(input()) print(A*B," ",2*A+2*B)
Traceback (most recent call last): File "/tmp/tmp4z2c9vvi/tmpg2afidy4.py", line 1, in <module> A=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s101579458
p02389
u728137020
1523545721
Python
Python3
py
Runtime Error
0
0
55
A=int(input()) B=int(input()) print(A*B," ",2*A+2*B)
Traceback (most recent call last): File "/tmp/tmp6mnh0ggf/tmpg47oxh4f.py", line 1, in <module> A=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s155286258
p02389
u728137020
1523545787
Python
Python3
py
Runtime Error
0
0
61
A=int(input(" ")) B=int(input(" ")) print(A*B," ",2*A+2*B)
Traceback (most recent call last): File "/tmp/tmpu6kjpqq9/tmpwa8yur3x.py", line 1, in <module> A=int(input(" ")) ^^^^^^^^^^ EOFError: EOF when reading a line
s556886039
p02389
u728137020
1523546140
Python
Python3
py
Runtime Error
0
0
59
A=int(input()) B=int(input()) print(A*B," ",(2*A)+(2*B))
Traceback (most recent call last): File "/tmp/tmplci_pxog/tmp8rkllcb8.py", line 1, in <module> A=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s822090028
p02389
u728137020
1523546265
Python
Python3
py
Runtime Error
0
0
63
A=int(input("")) B=int(input("")) print(A*B," ",(2*A)+(2*B))
Traceback (most recent call last): File "/tmp/tmp8amop0t4/tmpvka603aw.py", line 1, in <module> A=int(input("")) ^^^^^^^^^ EOFError: EOF when reading a line
s430927586
p02389
u095590628
1523580522
Python
Python3
py
Runtime Error
0
0
99
ab = [int(n) for n in input().split()] S = ab[0]*ab[1] L = 2*ab[0] + 2*ab[1] print(S + " " + L)
Traceback (most recent call last): File "/tmp/tmp7dh3pwue/tmpgbdnnxck.py", line 1, in <module> ab = [int(n) for n in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s095590619
p02389
u095590628
1523580682
Python
Python3
py
Runtime Error
0
0
112
ab = [int(n) for n in input().split()] S = ab[0]*ab[1] L = 2*ab[0] + 2*ab[1] print(" ".join(str,map([S,L])))
Traceback (most recent call last): File "/tmp/tmpj263sn9c/tmppio50cq_.py", line 1, in <module> ab = [int(n) for n in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s565062398
p02389
u398978447
1523585285
Python
Python3
py
Runtime Error
0
0
96
print("縦と横の長さを入力") a=int(input()) b=int(input()) print(a*b) print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpv8vknvvt/tmp85uongvw.py", line 3, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
縦と横の長さを入力
s180132239
p02389
u398978447
1523585303
Python
Python3
py
Runtime Error
0
0
106
print("縦と横の長さを入力") a=int(input()) b=int(input()) print(str(a*b)) print(str(a*2+b*2))
Traceback (most recent call last): File "/tmp/tmpgl1su67h/tmpu5jvbylu.py", line 3, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
縦と横の長さを入力
s930951692
p02389
u398978447
1523585465
Python
Python3
py
Runtime Error
0
0
89
print("縦と横の長さを入力") a=int(input()) b=int(input()) print(a*b,a*2+b*2)
Traceback (most recent call last): File "/tmp/tmp92a2uame/tmpas1r9u6r.py", line 3, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
縦と横の長さを入力
s364889341
p02389
u967096686
1523595304
Python
Python
py
Runtime Error
0
0
93
num1=int(input("整数aを入力")) num2=int(input("整数bを入力")) s=num1*num2 print(s)
Traceback (most recent call last): File "/tmp/tmpvd690fut/tmp20p97bkl.py", line 1, in <module> num1=int(input("整数aを入力")) ^^^^^^^^^^^^^^^^^^^^ EOFError: EOF when reading a line
整数aを入力
s222996420
p02389
u967096686
1523595422
Python
Python
py
Runtime Error
0
0
57
num1=int(input()) num2=int(input()) s=num1*num2 print(s)
Traceback (most recent call last): File "/tmp/tmp6vy8ume0/tmpouf0f21p.py", line 1, in <module> num1=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s054000352
p02389
u967096686
1523595444
Python
Python
py
Runtime Error
0
0
53
num1=int(input) num2=int(input) s=num1*num2 print(s)
Traceback (most recent call last): File "/tmp/tmp5ydcym1u/tmp9br7b931.py", line 1, in <module> num1=int(input) ^^^^^^^^^^ TypeError: int() argument must be a string, a bytes-like object or a real number, not 'builtin_function_or_method'