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
s484474834
p02389
u967096686
1523595526
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/tmpfaj0fenb/tmpoq_kw_wj.py", line 1, in <module> num1=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s817007832
p02389
u967096686
1523595563
Python
Python
py
Runtime Error
0
0
45
a=int(input()) b=int(input()) s=a*b print(s)
Traceback (most recent call last): File "/tmp/tmpr_nsadpx/tmpqg023l9m.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s797448544
p02389
u967096686
1523595631
Python
Python3
py
Runtime Error
0
0
56
a=int(input()) b=int(input()) s=a*b print(s)
Traceback (most recent call last): File "/tmp/tmpqveizy26/tmpnye47np7.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s471738138
p02389
u967096686
1523595722
Python
Python
py
Runtime Error
0
0
10
print(s)
Traceback (most recent call last): File "/tmp/tmpn147drkd/tmp0yaiwiyp.py", line 2, in <module> print(s) ^ NameError: name 's' is not defined
s358044457
p02389
u967096686
1523595749
Python
Python
py
Runtime Error
0
0
15
s=a*b print(s)
Traceback (most recent call last): File "/tmp/tmpqlra6hwl/tmp9f31y_48.py", line 1, in <module> s=a*b ^ NameError: name 'a' is not defined
s716311420
p02389
u967096686
1523595771
Python
Python
py
Runtime Error
0
0
30
a=int(input()) s=a*b print(s)
Traceback (most recent call last): File "/tmp/tmp33izv2b7/tmp1b8wqmty.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s004878451
p02389
u967096686
1523595984
Python
Python
py
Runtime Error
0
0
15
a,b=input(a,b)
Traceback (most recent call last): File "/tmp/tmpe4sz9sfz/tmpq9lpz_hd.py", line 1, in <module> a,b=input(a,b) ^ NameError: name 'a' is not defined
s870505042
p02389
u967096686
1523595994
Python
Python
py
Runtime Error
0
0
12
a,b=input()
Traceback (most recent call last): File "/tmp/tmpry3dzu98/tmp7l8c7227.py", line 1, in <module> a,b=input() ^^^^^^^ EOFError: EOF when reading a line
s762324194
p02389
u967096686
1523596005
Python
Python
py
Runtime Error
0
0
21
a,b=input() ptint(a)
Traceback (most recent call last): File "/tmp/tmp7dnavso3/tmpl2dncxe0.py", line 1, in <module> a,b=input() ^^^^^^^ EOFError: EOF when reading a line
s824476796
p02389
u967096686
1523596147
Python
Python
py
Runtime Error
0
0
19
a=input() ptint(a)
Traceback (most recent call last): File "/tmp/tmptetrjb_t/tmp6bqzj40p.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s965965786
p02389
u196653484
1523609198
Python
Python3
py
Runtime Error
0
0
364
#16D8101012J 伊藤惇 dj Python3 def area(a,b): c=a*b return c def perimeter_of_the_rectangle(a,b): c=(a+b)*2 return c def Rectangle(): a=int(input("input_a:")) b=int(input("input_b:")) c=area(a,b) d=perimeter_of_the_rectangle(a,b) print("{} {}".format(c,d)) if __name__ == '__main__': Rectangle() """ perimeter """
Traceback (most recent call last): File "/tmp/tmpfxs18l9e/tmp_fwrciky.py", line 19, in <module> Rectangle() File "/tmp/tmpfxs18l9e/tmp_fwrciky.py", line 12, in Rectangle a=int(input("input_a:")) ^^^^^^^^^^^^^^^^^ EOFError: EOF when reading a line
input_a:
s352472943
p02389
u196653484
1523609235
Python
Python3
py
Runtime Error
0
0
344
#16D8101012J 伊藤惇 dj Python3 def area(a,b): c=a*b return c def perimeter_of_the_rectangle(a,b): c=(a+b)*2 return c def Rectangle(): a=int(input("input_a:")) b=int(input("input_b:")) c=area(a,b) d=perimeter_of_the_rectangle(a,b) print("{} {}".format(c,d)) if __name__ == '__main__': Rectangle()
Traceback (most recent call last): File "/tmp/tmpp5u01pf2/tmpivtxaqe1.py", line 19, in <module> Rectangle() File "/tmp/tmpp5u01pf2/tmpivtxaqe1.py", line 12, in Rectangle a=int(input("input_a:")) ^^^^^^^^^^^^^^^^^ EOFError: EOF when reading a line
input_a:
s180815163
p02389
u713245476
1523635552
Python
Python3
py
Runtime Error
0
0
64
a=int(input("縦")) b=int(input("横")) print(a*b," ",2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpcn18xg4q/tmpijb_rixs.py", line 1, in <module> a=int(input("縦")) ^^^^^^^^^^^ EOFError: EOF when reading a line
s706892908
p02389
u772417059
1523643289
Python
Python
py
Runtime Error
0
0
39
a=input() b=input() print(a*2,' 'b*2)
File "/tmp/tmptvrqw4is/tmp8m4tm62u.py", line 4 print(a*2,' 'b*2) ^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s748414403
p02389
u196653484
1523673997
Python
Python3
py
Runtime Error
0
0
371
#16D8101012J 伊藤惇 dj Python3 def area(a,b): c=a*b return c def perimeter_of_the_rectangle(a,b): c=(a+b)*2 return c def Rectangle(): a=int(input("input_a:")) b=int(input("input_b:")) c=area(a,b) d=perimeter_of_the_rectangle(a,b) print("{} {}".format(c,d),end="") if __name__ == '__main__': Rectangle() """ perimeter """
Traceback (most recent call last): File "/tmp/tmpyeke_8e5/tmpd47gnxsk.py", line 19, in <module> Rectangle() File "/tmp/tmpyeke_8e5/tmpd47gnxsk.py", line 12, in Rectangle a=int(input("input_a:")) ^^^^^^^^^^^^^^^^^ EOFError: EOF when reading a line
input_a:
s672944794
p02389
u411881271
1523677359
Python
Python
py
Runtime Error
0
0
66
a,b=map(int,input().split()) s=a*b sum=a*2+b*2 print(s," ",sum)
Traceback (most recent call last): File "/tmp/tmpsflk5naq/tmp6cpabopv.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s433052639
p02389
u687567104
1523769385
Python
Python3
py
Runtime Error
0
0
70
a = int(input()) b = int(input()) print(a*b) print( (a*2) + (b*2) )
Traceback (most recent call last): File "/tmp/tmpaudf_2l3/tmp848qyqkh.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s827299521
p02389
u687567104
1523769404
Python
Python
py
Runtime Error
0
0
70
a = int(input()) b = int(input()) print(a*b) print( (a*2) + (b*2) )
Traceback (most recent call last): File "/tmp/tmpa785qr3d/tmpoaqu2ns0.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s098479096
p02389
u687567104
1523769404
Python
Python
py
Runtime Error
0
0
70
a = int(input()) b = int(input()) print(a*b) print( (a*2) + (b*2) )
Traceback (most recent call last): File "/tmp/tmpxzgzpqxv/tmpl07kyg3p.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s336973751
p02389
u687567104
1523769544
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/tmpg4p46vb6/tmpsl6wmsyf.py", line 1, in <module> a,b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s027801467
p02389
u728137020
1523814274
Python
Python
py
Runtime Error
0
0
89
A[2]={0,0} for i in range(2): A[i]=int(input()) print(A[0]*A[1]," ",2*A[0]+2*A[1])
Traceback (most recent call last): File "/tmp/tmpz5n4luyq/tmpfvstlcc6.py", line 2, in <module> A[2]={0,0} ^ NameError: name 'A' is not defined
s373182036
p02389
u728137020
1523814624
Python
Python3
py
Runtime Error
0
0
89
A[2]={0,0} for i in range(2): A[i]=int(input()) print(A[0]*A[1]," ",2*A[0]+2*A[1])
Traceback (most recent call last): File "/tmp/tmp30blybqu/tmpf1w3ujfi.py", line 2, in <module> A[2]={0,0} ^ NameError: name 'A' is not defined
s577609341
p02389
u728137020
1523814693
Python
Python3
py
Runtime Error
0
0
86
A={0,0} for i in range(2): A[i]=int(input()) print(A[0]*A[1]," ",2*A[0]+2*A[1])
Traceback (most recent call last): File "/tmp/tmpm10z5pgj/tmpb045gc6y.py", line 4, in <module> A[i]=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s993817685
p02389
u728137020
1523815213
Python
Python
py
Runtime Error
0
0
123
#include <iostream> int main() { int a, b; std::cin>>a>> b; std::cout<<a*b<<" "<<2 * (a + b); return 0 }
File "/tmp/tmp9h5b4ilo/tmp4vyfmwa2.py", line 4 int main() { ^^^^ SyntaxError: invalid syntax
s182821161
p02389
u728137020
1523816015
Python
Python
py
Runtime Error
0
0
121
#include <iostream> using namespace std; int main(){ int a, b; cin>>a>>b; cout<<a*b<<' '<<2*(a+b)<<endl; return 0; }
File "/tmp/tmptqjz0xfu/tmp_e2w6dxm.py", line 2 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
s993449461
p02389
u728137020
1523816048
Python
Python
py
Runtime Error
0
0
121
#include <iostream> using namespace std; int main(){ int a, b; cin>>a>>b; cout<<a*b<<' '<<2*(a+b)<<end|; return 0; }
File "/tmp/tmp9pis0ly6/tmpzicldtm4.py", line 2 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
s779832565
p02389
u728137020
1523816071
Python
Python
py
Runtime Error
0
0
121
#include <iostream> using namespace std; int main(){ int a, b; cin>>a>>b; cout<<a*b<<' '<<2*(a+b)<<endl; return 0; }
File "/tmp/tmp70elc2nn/tmp_t8spxby.py", line 2 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
s540099879
p02389
u055885332
1523855494
Python
Python3
py
Runtime Error
0
0
70
a=int(input("")) b=int(input("")) p=(a+b)*2 Area=a*b print(p,Area)
Traceback (most recent call last): File "/tmp/tmpq902cmr8/tmpvu3x0wt9.py", line 1, in <module> a=int(input("")) ^^^^^^^^^ EOFError: EOF when reading a line
s191742955
p02389
u055885332
1523855529
Python
Python3
py
Runtime Error
0
0
70
a=int(input("")) b=int(input("")) p=(a+b)*2 Area=a*b print(p,Area)
Traceback (most recent call last): File "/tmp/tmptdiyyvwh/tmphw2ocutb.py", line 1, in <module> a=int(input("")) ^^^^^^^^^ EOFError: EOF when reading a line
s275579627
p02389
u055885332
1523855566
Python
Python3
py
Runtime Error
0
0
66
a=int(input()) b=int(input()) p=(a+b)*2 Area=a*b print(p,Area)
Traceback (most recent call last): File "/tmp/tmpar5bcivi/tmpm91yuc2w.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s877758565
p02389
u055885332
1523855838
Python
Python
py
Runtime Error
0
0
68
# a=int(input()) b=int(input()) p=(a+b)*2 Area=a*b print(Area,p)
Traceback (most recent call last): File "/tmp/tmpk2lhspwc/tmpku0s52ln.py", line 2, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s472540690
p02389
u564105430
1523857516
Python
Python3
py
Runtime Error
0
0
54
a=int(input()) b=int(input()) print(a*b," ",2*a+2*b)
Traceback (most recent call last): File "/tmp/tmplsxy7wk5/tmp7zhyc2tl.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s797596106
p02389
u848218390
1523858689
Python
Python3
py
Runtime Error
20
5588
61
s = input() a = int(s[0]) b = int(s[2]) print(a*b, 2*(a+b))
Traceback (most recent call last): File "/tmp/tmpks7y39yy/tmpijth9qz5.py", line 1, in <module> s = input() ^^^^^^^ EOFError: EOF when reading a line
s374056686
p02389
u046108504
1523858756
Python
Python3
py
Runtime Error
0
0
45
a = input() b = input() print (a*b 2*a+2*b)
File "/tmp/tmpjzebh_h2/tmp7ipolnkj.py", line 4 print (a*b 2*a+2*b) ^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s964378812
p02389
u848218390
1523858780
Python
Python3
py
Runtime Error
20
5584
61
s = input() a = int(s[0]) b = int(s[2]) print(a*b, 2*(a+b))
Traceback (most recent call last): File "/tmp/tmplu1nldpr/tmpd65y1y6c.py", line 1, in <module> s = input() ^^^^^^^ EOFError: EOF when reading a line
s289778487
p02389
u781194524
1523859063
Python
Python3
py
Runtime Error
0
0
54
a.b=[int() for x in input().split] print(a*b,(a+b)*2)
Traceback (most recent call last): File "/tmp/tmpk9s9bh5k/tmp8doh9v94.py", line 1, in <module> a.b=[int() for x in input().split] ^^^^^^^ EOFError: EOF when reading a line
s558359888
p02389
u781194524
1523859111
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/tmp7k6eue0p/tmpzbc0n85f.py", line 1, in <module> a,b=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s903793541
p02389
u592529978
1523931855
Python
Python
py
Runtime Error
0
0
48
a=input() b=input() print a*b print (2*a)+(2*b)
File "/tmp/tmpzmdkmppi/tmp1xuxd4sp.py", line 3 print a*b ^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s517923270
p02389
u592529978
1523932556
Python
Python
py
Runtime Error
0
0
55
a,b=map(int,raw_input().split('')) print (a*b,2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpjswwz7ym/tmpdbnojhk2.py", line 1, in <module> a,b=map(int,raw_input().split('')) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s028808169
p02389
u580836283
1523939877
Python
Python3
py
Runtime Error
0
0
78
a=int(input("lenA=")) b=int(input("lenB=")) c=a+a+b+b d=a*b print(",c, ,d,")
Traceback (most recent call last): File "/tmp/tmpalrwr0p_/tmpgknz6r8l.py", line 1, in <module> a=int(input("lenA=")) ^^^^^^^^^^^^^^ EOFError: EOF when reading a line
lenA=
s794570025
p02389
u580836283
1523940056
Python
Python3
py
Runtime Error
0
0
79
a=int(input("lenA=")) b=int(input("lenB=")) c=a+a+b+b d=a*b print(",c, ,d,")
Traceback (most recent call last): File "/tmp/tmpj4vt_ghh/tmp_f3bpisf.py", line 1, in <module> a=int(input("lenA=")) ^^^^^^^^^^^^^^ EOFError: EOF when reading a line
lenA=
s549148810
p02389
u580836283
1523940326
Python
Python3
py
Runtime Error
0
0
79
a=int(input("lenA=")) b=int(input("lenB=")) c=a+a+b+b d=a*b print(",d, ,c,")
Traceback (most recent call last): File "/tmp/tmpzwrfk31k/tmp53kv0e6t.py", line 1, in <module> a=int(input("lenA=")) ^^^^^^^^^^^^^^ EOFError: EOF when reading a line
lenA=
s637850156
p02389
u580836283
1523940392
Python
Python3
py
Runtime Error
0
0
78
a=int(input("lenA=")) b=int(input("lenB=")) c=a+a+b+b d=a*b print(d," ",c,)
Traceback (most recent call last): File "/tmp/tmp27520bmg/tmph_8ycjkq.py", line 1, in <module> a=int(input("lenA=")) ^^^^^^^^^^^^^^ EOFError: EOF when reading a line
lenA=
s713902539
p02389
u580836283
1523940442
Python
Python3
py
Runtime Error
0
0
74
a=int(input("lenA=")) b=int(input("lenB=")) c=a+a+b+b d=a*b print(d,c,)
Traceback (most recent call last): File "/tmp/tmprl3wo_v9/tmpvtrs7mzl.py", line 1, in <module> a=int(input("lenA=")) ^^^^^^^^^^^^^^ EOFError: EOF when reading a line
lenA=
s913785710
p02389
u580836283
1523940589
Python
Python3
py
Runtime Error
0
0
59
a=int(input()) b=int(input()) c=a+a+b+b d=a*b print(d,c)
Traceback (most recent call last): File "/tmp/tmp6g5yejsn/tmpfl4nw4f3.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s008872065
p02389
u017435045
1523941352
Python
Python3
py
Runtime Error
0
0
63
a = [i for i in int(input().split())] print(a[0]*a[1], sum(a))
Traceback (most recent call last): File "/tmp/tmpk0o4pdca/tmp62_r1sq8.py", line 1, in <module> a = [i for i in int(input().split())] ^^^^^^^ EOFError: EOF when reading a line
s424743928
p02389
u017435045
1523941383
Python
Python3
py
Runtime Error
0
0
54
a =map(int, input().split()) print(a[0]*a[1], sum(a))
Traceback (most recent call last): File "/tmp/tmp8im8k2fk/tmpq7zylwm5.py", line 1, in <module> a =map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s736940468
p02389
u017435045
1523941410
Python
Python3
py
Runtime Error
0
0
60
a =map(int, input().split()) print(a[0]*a[1], 2(a[0]+a[1]))
/tmp/tmp_c7mng7k/tmp5fw57mkr.py:2: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? print(a[0]*a[1], 2(a[0]+a[1])) Traceback (most recent call last): File "/tmp/tmp_c7mng7k/tmp5fw57mkr.py", line 1, in <module> a =map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s636441355
p02389
u017435045
1523941438
Python
Python3
py
Runtime Error
0
0
65
a =listmap(int, input().split())) print(a[0]*a[1], 2(a[0]+a[1]))
File "/tmp/tmp0t4e6pyb/tmp5t_y_oo0.py", line 1 a =listmap(int, input().split())) ^ SyntaxError: unmatched ')'
s394000565
p02389
u017435045
1523941451
Python
Python3
py
Runtime Error
0
0
66
a =list(map(int, input().split())) print(a[0]*a[1], 2(a[0]+a[1]))
/tmp/tmp1i5ozgpu/tmpz00w71oi.py:2: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma? print(a[0]*a[1], 2(a[0]+a[1])) Traceback (most recent call last): File "/tmp/tmp1i5ozgpu/tmpz00w71oi.py", line 1, in <module> a =list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s422145688
p02389
u017435045
1523941532
Python
Python3
py
Runtime Error
0
0
90
a =list(map(int, input().split())) b = [] b[0] = a[0]*a[1] b[1] = (a[0]+a[1])*2 print(*b)
Traceback (most recent call last): File "/tmp/tmpz_l2odo1/tmp0ykh3lny.py", line 1, in <module> a =list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s863164920
p02389
u017435045
1523941833
Python
Python3
py
Runtime Error
0
0
103
a =map(int, input().split()) b = [0 for i in range(2)] b[0] = a[0]*a[1] b[1] = (a[0]+a[1])*2 print(*b)
Traceback (most recent call last): File "/tmp/tmph_enuxcb/tmp_c1ejxgs.py", line 1, in <module> a =map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s156001939
p02389
u831591800
1523954623
Python
Python3
py
Runtime Error
0
0
47
a = input() b = input() print("a*b"+"2*a+2*b")
Traceback (most recent call last): File "/tmp/tmp5or_9ue1/tmpzs2d6neo.py", line 1, in <module> a = input() ^^^^^^^ EOFError: EOF when reading a line
s328035224
p02389
u573915636
1523955611
Python
Python3
py
Runtime Error
0
0
91
a=int(input("a:")) b=int(input("b:")) if 1<=a<=100 and 1<=b<=100: print(a*b," ",2*(a+b))
Traceback (most recent call last): File "/tmp/tmpnmu2fz3i/tmplb0lzgd7.py", line 1, in <module> a=int(input("a:")) ^^^^^^^^^^^ EOFError: EOF when reading a line
a:
s173787119
p02389
u899724190
1523956096
Python
Python
py
Runtime Error
0
0
109
a=input() line=a.split() x=int(line[0]) y=int(line[1]) z1=x*y z2=x*2+y*2 z3=str(z1) z4=str(z2) print(z1,z2)
Traceback (most recent call last): File "/tmp/tmp65agxlak/tmpi_x8zsb7.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s268862911
p02389
u899724190
1523956152
Python
Python
py
Runtime Error
0
0
109
a=input() line=a.split() x=int(line[0]) y=int(line[1]) z1=x*y z2=x*2+y*2 z3=str(z1) z4=str(z2) print(z3,z4)
Traceback (most recent call last): File "/tmp/tmpff1m1se0/tmpklxoqz8k.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s586229305
p02389
u909075105
1523964504
Python
Python3
py
Runtime Error
0
0
117
#16D8101023J 久保田凌弥 kubotarouxxx python3 x=int(input()) y=int(input()) w=x*y z=2*x+2*y print(w) print(z)
Traceback (most recent call last): File "/tmp/tmp7kovwwv6/tmpwnjt_ye5.py", line 3, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s647120176
p02389
u909075105
1523964519
Python
Python3
py
Runtime Error
0
0
117
#16D8101023J 久保田凌弥 kubotarouxxx python3 x=int(input()) y=int(input()) w=x*y z=2*x+2*y print(w) print(z)
Traceback (most recent call last): File "/tmp/tmpy1twq2wh/tmpuuchhf5c.py", line 3, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s107548727
p02389
u909075105
1523964611
Python
Python3
py
Runtime Error
0
0
111
#16D8101023J 久保田凌弥 kubotarouxxx python3 x=int(input()) y=int(input()) w=x*y z=2*x+2*y print(w,z)
Traceback (most recent call last): File "/tmp/tmpisms7n4s/tmp9zbgele_.py", line 3, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s025254043
p02389
u909075105
1523964679
Python
Python3
py
Runtime Error
0
0
111
#16D8101023J 久保田凌弥 kubotarouxxx python3 x=int(input()) y=int(input()) w=x*y z=x*2+y*2 print(w,z)
Traceback (most recent call last): File "/tmp/tmpjrcpekec/tmp7ta2o5ny.py", line 3, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s891756023
p02389
u909075105
1523964879
Python
Python3
py
Runtime Error
0
0
111
#16D8101023J 久保田凌弥 kubotarouxxx python3 x=int(input()) y=int(input()) w=x*y z=2*(x+y) print(w,z)
Traceback (most recent call last): File "/tmp/tmp54lm6vph/tmp_5v5d9cp.py", line 3, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s046292777
p02389
u909075105
1523968761
Python
Python3
py
Runtime Error
0
0
111
#16D8101023J 久保田凌弥 kubotarouxxx python3 x=int(input()) y=int(input()) w=x*y z=2*(x+y) print(w,z)
Traceback (most recent call last): File "/tmp/tmpnfjwbwf3/tmpg86y0j14.py", line 3, in <module> x=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s634117171
p02389
u909075105
1523969052
Python
Python3
py
Runtime Error
0
0
100
#16D8101023J 久保田凌弥 kubotarouxxx python3 (x,y)=int(input()) w=x*y z=2*x+2*y print(w,z)
Traceback (most recent call last): File "/tmp/tmpn9vq6f_3/tmp2qba46q4.py", line 3, in <module> (x,y)=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s352050272
p02389
u909075105
1523969518
Python
Python3
py
Runtime Error
0
0
114
#16D8101023J 久保田凌弥 kubotarouxxx python3 x,y=map(int, raw_input().split()) w=x*y z=2*x+2*y print(w,z)
Traceback (most recent call last): File "/tmp/tmpf1cvu0qy/tmpqqxd86lm.py", line 3, in <module> x,y=map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s409127491
p02389
u909075105
1523969572
Python
Python3
py
Runtime Error
0
0
114
#16D8101023J 久保田凌弥 kubotarouxxx python3 x,y=map(int, raw_input().split()) w=x*y z=2*x+2*y print(w,z)
Traceback (most recent call last): File "/tmp/tmpe7kaikb7/tmpy1lknfb5.py", line 3, in <module> x,y=map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s099173711
p02389
u055885332
1523974929
Python
Python3
py
Runtime Error
20
5584
97
# line=(input()) line.split() a=int(line[0]) b=int(line[2]) p=(a+b)*2 Area=a*b print(Area,p)
Traceback (most recent call last): File "/tmp/tmp2klia_ws/tmpqqhuqxie.py", line 2, in <module> line=(input()) ^^^^^^^ EOFError: EOF when reading a line
s265871576
p02389
u055885332
1523975425
Python
Python3
py
Runtime Error
20
5584
92
line=(input()) line.split() a=int(line[0]) b=int(line[2]) p=(a+b)*2 Area=a*b print(Area,p)
Traceback (most recent call last): File "/tmp/tmpo18dzc5k/tmpgeix34wq.py", line 1, in <module> line=(input()) ^^^^^^^ EOFError: EOF when reading a line
s994300694
p02389
u372721957
1523975550
Python
Python
py
Runtime Error
0
0
107
#include<iostream> int main() { int a,b; std::cin>>a >>b; std::cout<<a*b <<2*a+2*b; return 0; }
File "/tmp/tmpu3chtlpc/tmpfgdm0iux.py", line 3 int main() ^^^^ SyntaxError: invalid syntax
s937046394
p02389
u063056051
1523978117
Python
Python
py
Runtime Error
0
0
53
x,y=map(int,raw_input().split()) print a*b,(a+b)*2
File "/tmp/tmpit022xdt/tmpo9dpndfd.py", line 4 print a*b,(a+b)*2 ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s463943649
p02389
u063056051
1523978126
Python
Python3
py
Runtime Error
0
0
53
x,y=map(int,raw_input().split()) print a*b,(a+b)*2
File "/tmp/tmprzvrr54g/tmpwu7lyaua.py", line 4 print a*b,(a+b)*2 ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s043865821
p02389
u063056051
1523978138
Python
Python3
py
Runtime Error
0
0
53
x,y=map(int,raw_input().split()) print x*y,(x+y)*2
File "/tmp/tmp0ujslihe/tmpezd0ala5.py", line 4 print x*y,(x+y)*2 ^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s701222883
p02389
u063056051
1523979497
Python
Python
py
Runtime Error
0
0
51
x,y=map(int, input().split()) print(x*y,(x+y)*2)
Traceback (most recent call last): File "/tmp/tmpbqnc094l/tmpt7p7s6jf.py", line 1, in <module> x,y=map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s743404970
p02389
u308770067
1523988362
Python
Python3
py
Runtime Error
0
0
130
#include <iostream> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<(a*b)<<" "<<(a+b)*2; return 0; }
File "/tmp/tmp6mwkx5k0/tmpxkh29yks.py", line 2 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
s048390103
p02389
u875523539
1524028298
Python
Python3
py
Runtime Error
0
0
64
x = int(input()); print(a*b); x = int(input()); print(a*2+b*2);
Traceback (most recent call last): File "/tmp/tmp82r7cnul/tmp9hinetuc.py", line 1, in <module> x = int(input()); ^^^^^^^ EOFError: EOF when reading a line
s904376888
p02389
u875523539
1524028505
Python
Python3
py
Runtime Error
0
0
54
x = int(input() input()); print(a*b); print(a*2+b*2);
File "/tmp/tmpz5ir5u8j/tmpmat1wxdz.py", line 1 x = int(input() input()); ^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s525161358
p02389
u573915636
1524029788
Python
Python3
py
Runtime Error
0
0
98
x=input().split() a=int(x[0]) b=int(x[1]) if 1<=a<=100 and 1<=b<=100: print(a*b," ",2*(a+b)) \n
File "/tmp/tmp4hc102h0/tmpbsyukif5.py", line 7 \n ^ SyntaxError: unexpected character after line continuation character
s765134790
p02389
u252641015
1524030738
Python
Python3
py
Runtime Error
0
0
72
a=int(input("input a")) b=int(input("input b")) print(a*b," ",2*(a+b))
Traceback (most recent call last): File "/tmp/tmpu0v_0lhj/tmpikvd5u0g.py", line 1, in <module> a=int(input("input a")) ^^^^^^^^^^^^^^^^ EOFError: EOF when reading a line
input a
s781440926
p02389
u252641015
1524030823
Python
Python3
py
Runtime Error
0
0
72
a=int(input("input a")) b=int(input("input b")) print(a*b," ",2*(a+b))
Traceback (most recent call last): File "/tmp/tmp621prwk8/tmpxz93142c.py", line 1, in <module> a=int(input("input a")) ^^^^^^^^^^^^^^^^ EOFError: EOF when reading a line
input a
s103237351
p02389
u252641015
1524031011
Python
Python3
py
Runtime Error
0
0
68
a=int(input("input a")) b=int(input("input b")) print(a*b,2*(a+b))
Traceback (most recent call last): File "/tmp/tmp9yo4v062/tmpha9rtzxh.py", line 1, in <module> a=int(input("input a")) ^^^^^^^^^^^^^^^^ EOFError: EOF when reading a line
input a
s613839982
p02389
u148477094
1524032477
Python
Python3
py
Runtime Error
0
0
56
a,b=map(int,input(),split()) x=a*b y=2*(a+b) print(x,y)
Traceback (most recent call last): File "/tmp/tmpdgv_e0oe/tmpr5w5ad0k.py", line 1, in <module> a,b=map(int,input(),split()) ^^^^^^^ EOFError: EOF when reading a line
s086037154
p02389
u967096686
1524036847
Python
Python3
py
Runtime Error
0
0
84
s=raw_input().split() a=int(s[0]) b=int(s[1]) print("{0} {1}".format(a*b,2*(a+b)))
Traceback (most recent call last): File "/tmp/tmpdn6qcaei/tmp918tckp6.py", line 1, in <module> s=raw_input().split() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s048568421
p02389
u967096686
1524036875
Python
Python3
py
Runtime Error
0
0
84
s=raw_input().split() a=int(s[0]) b=int(s[1]) print("{0} {1}".format(a*b,2*(a+b)))
Traceback (most recent call last): File "/tmp/tmp_1guxthb/tmpizenp4fa.py", line 1, in <module> s=raw_input().split() ^^^^^^^^^ NameError: name 'raw_input' is not defined
s978301216
p02389
u215863296
1524040976
Python
Python3
py
Runtime Error
0
0
55
a,b=map(int,input().split()) print(a*b) print(2*a+2*B)
Traceback (most recent call last): File "/tmp/tmpneqfumu0/tmpcosse095.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s033486223
p02389
u648117624
1524154674
Python
Python3
py
Runtime Error
0
0
82
a = int(input()) b = int(input()) s = str(a*b) p = str(2*a+2*b) print(s+" "+p)
Traceback (most recent call last): File "/tmp/tmp6c6t0p0a/tmpoyxvilan.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s553788892
p02389
u648117624
1524154723
Python
Python3
py
Runtime Error
0
0
69
a = int(input()) b = int(input()) s = a*b p = 2*a+2*b print(s, p)
Traceback (most recent call last): File "/tmp/tmplplta9qu/tmpo62vpb5e.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s865410084
p02389
u648117624
1524154777
Python
Python3
py
Runtime Error
0
0
53
a,b = int(input()) s = a*b p = 2*a+2*b print(s,p)
Traceback (most recent call last): File "/tmp/tmpugt4s3nw/tmp8fxjnq2k.py", line 1, in <module> a,b = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s937070614
p02389
u485986915
1524214409
Python
Python3
py
Runtime Error
0
0
62
a = int(input()) b = int(input()) print(a*b) print(2*a + 2*b)
Traceback (most recent call last): File "/tmp/tmpmg8zc7os/tmpz790j_ri.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s512183724
p02389
u485986915
1524214490
Python
Python3
py
Runtime Error
0
0
60
a = int(input()) b = int(input()) print(a*b) print(2*a+2*b)
Traceback (most recent call last): File "/tmp/tmpy39gidbr/tmpc4f3y_uj.py", line 1, in <module> a = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s140667467
p02389
u485986915
1524214772
Python
Python3
py
Runtime Error
0
0
49
a,b = map(int, input().split) print(a*b,2*a+2*b)
Traceback (most recent call last): File "/tmp/tmp_oc65oev/tmphzkgubr_.py", line 1, in <module> a,b = map(int, input().split) ^^^^^^^ EOFError: EOF when reading a line
s136289591
p02389
u836133197
1524486707
Python
Python3
py
Runtime Error
0
0
36
a, b = map(int, input()) print(a*b)
Traceback (most recent call last): File "/tmp/tmpzi6ki4j5/tmp09qsayht.py", line 1, in <module> a, b = map(int, input()) ^^^^^^^ EOFError: EOF when reading a line
s243042830
p02389
u836133197
1524486710
Python
Python3
py
Runtime Error
0
0
36
a, b = map(int, input()) print(a*b)
Traceback (most recent call last): File "/tmp/tmpvwc9v16r/tmpiqzs0d4m.py", line 1, in <module> a, b = map(int, input()) ^^^^^^^ EOFError: EOF when reading a line
s634609053
p02389
u836133197
1524486813
Python
Python3
py
Runtime Error
0
0
72
a = list(map(int, input())) print("{} {}".format(a[0]*a[1], 2*sum(a)))
Traceback (most recent call last): File "/tmp/tmpqui8vgon/tmpqiey4_r5.py", line 1, in <module> a = list(map(int, input())) ^^^^^^^ EOFError: EOF when reading a line
s953211847
p02389
u836133197
1524486876
Python
Python3
py
Runtime Error
0
0
83
a, b = list(map(int, input())) c = a * b d = 2*(a + b) print("{} {}".format(c, d))
Traceback (most recent call last): File "/tmp/tmpzep2abje/tmpcolddm3w.py", line 1, in <module> a, b = list(map(int, input())) ^^^^^^^ EOFError: EOF when reading a line
s527501626
p02389
u255317651
1524492452
Python
Python3
py
Runtime Error
0
0
71
a, b =list(map(int,input().split()) print("{} {}".format(a*b,2*(a+b))
File "/tmp/tmpgclg_d6q/tmpjqbmab08.py", line 2 print("{} {}".format(a*b,2*(a+b)) ^ SyntaxError: '(' was never closed
s865930146
p02389
u255317651
1524493060
Python
Python3
py
Runtime Error
0
0
71
a, b =list(map(int,input().split()) print("{} {}".format(a*b,2*(a+b)))
File "/tmp/tmpr0e30_88/tmplj85qzw1.py", line 1 a, b =list(map(int,input().split()) ^ SyntaxError: '(' was never closed
s061791926
p02389
u166841004
1524549319
Python
Python3
py
Runtime Error
0
0
52
a=(input())) b=(input())) print(a*b) print(a*2+b*2)
File "/tmp/tmpi4pgit3g/tmphsdf6g64.py", line 1 a=(input())) ^ SyntaxError: unmatched ')'
s281171883
p02389
u166841004
1524549333
Python
Python3
py
Runtime Error
0
0
50
a=(input()) b=(input()) print(a*b) print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmph75snu3_/tmpezayea7h.py", line 1, in <module> a=(input()) ^^^^^^^ EOFError: EOF when reading a line
s772425948
p02389
u166841004
1524549367
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/tmpnv2f8umz/tmpkirl1rxf.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s701224203
p02389
u166841004
1524549393
Python
Python3
py
Runtime Error
0
0
58
a=long(input()) b=long(input()) print(a*b) print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpphqjlgmm/tmpqc8jj53s.py", line 1, in <module> a=long(input()) ^^^^ NameError: name 'long' is not defined
s111078260
p02389
u166841004
1524549410
Python
Python3
py
Runtime Error
0
0
46
a=input() b=input() print(a*b) print(a*2+b*2)
Traceback (most recent call last): File "/tmp/tmpuyi12993/tmpq2ve3p1g.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line