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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s660075493 | p02389 | u692329827 | 1461753302 | Python | Python | py | Runtime Error | 0 | 6268 | 130 | import sys
x = sys.stdin.readline()
y = list(x)
i = 2
del y[1]
del y[2]
y = map(int, y)
z = y[0]*y[1]
w = (y[0]+y[1])*2
print z, w | File "/tmp/tmpk6sdgx9v/tmpwhvmvcu3.py", line 10
print z, w
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s834261860 | p02389 | u617990214 | 1461753621 | Python | Python | py | Runtime Error | 0 | 0 | 9 | print a*b | File "/tmp/tmpr7lbijug/tmp2f0vtqo0.py", line 1
print a*b
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s181979770 | p02389 | u617990214 | 1461754937 | Python | Python | py | Runtime Error | 0 | 0 | 29 | a=input()
b=input()
print a*b | File "/tmp/tmph7ad2e6x/tmp06obonbw.py", line 3
print a*b
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s326931694 | p02389 | u617990214 | 1461755410 | Python | Python | py | Runtime Error | 0 | 0 | 72 | n=input()
N=n.split(" ")
a=int(N[0])
b=int(N[1])
print a*b
print (a+b)*2 | File "/tmp/tmpbenx3rz9/tmp4v9tngsa.py", line 5
print a*b
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s732246028 | p02389 | u617990214 | 1461755484 | Python | Python | py | Runtime Error | 0 | 0 | 76 | n=raw_input()
N=n.split(" ")
a=int(N[0])
b=int(N[1])
print a*b,print (a+b)*2 | File "/tmp/tmpxtsy09u3/tmpv5x3sy64.py", line 5
print a*b,print (a+b)*2
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s765107221 | p02389 | u617990214 | 1461755494 | Python | Python | py | Runtime Error | 0 | 0 | 77 | n=raw_input()
N=n.split(" ")
a=int(N[0])
b=int(N[1])
print a*b ,print (a+b)*2 | File "/tmp/tmpbixbozyl/tmpyghbbl5r.py", line 5
print a*b ,print (a+b)*2
^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s281727565 | p02389 | u617990214 | 1461755513 | Python | Python | py | Runtime Error | 0 | 0 | 77 | n=raw_input()
k=n.split(" ")
a=int(k[0])
b=int(k[1])
print a*b ,print (a+b)*2 | File "/tmp/tmpcorzvl12/tmp69c4el23.py", line 5
print a*b ,print (a+b)*2
^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s502499082 | p02389 | u617990214 | 1461755568 | Python | Python | py | Runtime Error | 0 | 0 | 74 | n=input()
k=n.split(" ")
a=int(k[0])
b=int(k[1])
print a*b ,
print (a+b)*2 | File "/tmp/tmp35tm83fl/tmpwp4er3cc.py", line 5
print a*b ,
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s030959190 | p02389 | u146647066 | 1462081834 | Python | Python | py | Runtime Error | 0 | 0 | 49 | a,b=map(int,raw_input().split()
print a*b,2*(a+b) | File "/tmp/tmp59vutii4/tmp95u85ocf.py", line 1
a,b=map(int,raw_input().split()
^
SyntaxError: '(' was never closed
| |
s907880633 | p02389 | u192877548 | 1462111908 | Python | Python3 | py | Runtime Error | 30 | 7632 | 109 | # coding: utf-8
i = input()
menseki=int(i[0])*int(i[2])
nagasa=(int(i[0])+int(i[2]))*2
print(menseki,nagasa) | Traceback (most recent call last):
File "/tmp/tmpddx82p17/tmp4n1biejv.py", line 3, in <module>
i = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s937846935 | p02389 | u999470575 | 1462177123 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | x = input()
y = input()
print((int(x) * 2 + int(y) * 2))
print((int(x) * int(y)) | File "/tmp/tmp6mqdj3og/tmp3iagjknb.py", line 3
print((int(x) * 2 + int(y) * 2))
IndentationError: unexpected indent
| |
s816417920 | p02389 | u999470575 | 1462177195 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | x = input()
y = input()
print((int(x) * 2 + int(y) * 2))
print((int(x) * int(y)) | File "/tmp/tmpocpe4446/tmpb6341t34.py", line 2
y = input()
IndentationError: unexpected indent
| |
s972989706 | p02389 | u999470575 | 1462177400 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | x = input()
y = input()
print(((int(x) + int(y)) * 2))
print((int(x) * int(y)) | File "/tmp/tmpiejnzjx8/tmpfqh0wbz3.py", line 3
print(((int(x) + int(y)) * 2))
IndentationError: unexpected indent
| |
s088624889 | p02389 | u999470575 | 1462177473 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a = input()
b = input()
print(((int(a) + int(b)) * 2))
print((int(a) * int(b)) | File "/tmp/tmp31jjs42r/tmp1iimv2_t.py", line 3
print(((int(a) + int(b)) * 2))
IndentationError: unexpected indent
| |
s070999293 | p02389 | u999470575 | 1462775660 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a = input()
b???= input()
print(int(a) * int(b))
print((int(a) * 2) + (int(b) * 2)) | File "/tmp/tmpjfuv831r/tmpktw84f0b.py", line 2
b???= input()
IndentationError: unexpected indent
| |
s407215840 | p02389 | u999470575 | 1462775782 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a = input()
b???= input()
print(int(a) * int(b))
print((int(a) * 2) + (int(b) * 2)) | File "/tmp/tmp1bh50jwk/tmpv9oz1bql.py", line 2
b???= input()
^
SyntaxError: invalid syntax
| |
s625017867 | p02389 | u999470575 | 1462776061 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a = input()
b???= input()
print(int(a) * int(b)),((int(a) * 2) + (int(b) * 2)) | File "/tmp/tmpqz1l7bdt/tmpqe427zbj.py", line 2
b???= input()
^
SyntaxError: invalid syntax
| |
s691981857 | p02389 | u999470575 | 1462776163 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a = input()
b???= input()
print(int(a) * int(b)),((int(a) * 2) + (int(b) * 2)) | File "/tmp/tmp5i2q4lqj/tmp_biblv5z.py", line 2
b???= input()
^
SyntaxError: invalid syntax
| |
s571646523 | p02389 | u999470575 | 1462776661 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a,b = input( , )
print(int(a) * int(b)),((int(a) * 2) + (int(b) * 2)) | File "/tmp/tmp19fdvoar/tmp7e6axma_.py", line 1
a,b = input( , )
^
SyntaxError: invalid syntax
| |
s608283630 | p02389 | u999470575 | 1462776931 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a = input()
b = input()
print((int(a) * int(b)),8(int(a) * 2) + (int(b) * 2))) | File "/tmp/tmpji71eh9h/tmpd260vs16.py", line 3
print((int(a) * int(b)),8(int(a) * 2) + (int(b) * 2)))
^
SyntaxError: unmatched ')'
| |
s296575622 | p02389 | u999470575 | 1462777073 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a = input()
b = input()
print((int(a) * int(b)),((int(a) * 2) + (int(b) * 2))) | Traceback (most recent call last):
File "/tmp/tmpu38cgfj9/tmp3j0rniri.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s550372205 | p02389 | u999470575 | 1462777444 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a = input()
b = input()
print((int(a) * int(b),(int(a) * 2) + (int(b) * 2))) | Traceback (most recent call last):
File "/tmp/tmp0zsc1oal/tmpgvlyshc5.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s070638826 | p02389 | u182913399 | 1463030633 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | w, h = map(int, raw_input().split())
print w * h, w * 2 + h * 2 | File "/tmp/tmpviak89jt/tmpa_t3xr2y.py", line 2
print w * h, w * 2 + h * 2
^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s246198007 | p02389 | u474983612 | 1463233856 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | x, y = [x for x in input().split()]
print(str(x * y) + ' ' + str(x * 2 + y * 2)) | Traceback (most recent call last):
File "/tmp/tmps_yfhmk4/tmpirlegmg2.py", line 1, in <module>
x, y = [x for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s184934813 | p02389 | u656153606 | 1463491417 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | a=input()
b=input()
print(a,b)
square=int(a)*int(b)
length=int(a)*2+int(b)*2
print(square,length) | Traceback (most recent call last):
File "/tmp/tmpcjkwwsa_/tmpb8kaxy3m.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s040086539 | p02389 | u656153606 | 1463491639 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | a=input()
b=input()
print(a,b)
square=int(a)*int(b)
length=int(a)*2+int(b)*2
print(square,length) | Traceback (most recent call last):
File "/tmp/tmpz6n__w71/tmpb9qyhkoa.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s586632644 | p02389 | u656153606 | 1463491929 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a=input()
b=input()
square=int(a)*int(b)
length=int(a)*2+int(b)*2
print(square,length) | Traceback (most recent call last):
File "/tmp/tmpe8ib24a5/tmphc4mf0rx.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s588301226 | p02389 | u656153606 | 1463492101 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a=input()
b=input()
square=int(a)*int(b)
length=int(a)*2+int(b)*2
print(square),
print(length) | Traceback (most recent call last):
File "/tmp/tmpqigxqgmp/tmpxy5e9yz9.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s460427085 | p02389 | u656153606 | 1463492472 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | a=input()
b=input()
square=int(a)*int(b)
length=int(a)*2+int(b)*2
#print(square),
#print(length)
print(square,length) | Traceback (most recent call last):
File "/tmp/tmp087dt873/tmp6q9heizr.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s422858430 | p02389 | u196669489 | 1463552188 | Python | Python | py | Runtime Error | 0 | 0 | 62 | x = input()
y = input()
a = x*y
b = 2*x+2*y
print a
print b | File "/tmp/tmp6l6wy7ql/tmp3m1kuif8.py", line 7
print a
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s698297933 | p02389 | u104931506 | 1463701468 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a = int(input())
b = int(input())
print(a*b)
print(2*a+2*b) | Traceback (most recent call last):
File "/tmp/tmpy77_p_up/tmpf2yd8ve_.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s163882511 | p02389 | u070968430 | 1463887346 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | data = int(input().split())
a = data[0]
b = data[1]
print(a * b, end = " ")
print(a* 2 + b * 2, end = "\n") | Traceback (most recent call last):
File "/tmp/tmpzm02k4g8/tmpaw8jiv48.py", line 1, in <module>
data = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s772708952 | p02389 | u305878853 | 1464005881 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print (a*b) | Traceback (most recent call last):
File "/tmp/tmpatufavea/tmp9md1s0xb.py", line 1, in <module>
print (a*b)
^
NameError: name 'a' is not defined
| |
s751386253 | p02389 | u305878853 | 1464006038 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a = int(input())
b = int(input())
print (a*b)
print(a+a+b+b) | Traceback (most recent call last):
File "/tmp/tmpuh3l5vxj/tmpwh2catdc.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s597018255 | p02389 | u305878853 | 1464006340 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | a = input()
b = a.split(' ')
c = b[0]
d = b[1]
cint = int(c)
dint = int(d)
ans = cint * dint
ans
ans2 = cint + cin?? + dint + dint
ans2 | File "/tmp/tmpgug9pwvo/tmp50_ilj9f.py", line 10
ans2 = cint + cin?? + dint + dint
^
SyntaxError: invalid syntax
| |
s716967801 | p02389 | u177370127 | 1464759822 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a = int(input())
b = int(input())
s = (a + b) * 2
m = a * b
print(m, s) | Traceback (most recent call last):
File "/tmp/tmp09vaxz62/tmpgvhsa8dk.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s132913465 | p02389 | u177370127 | 1464759858 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a = int(input())
b = int(input())
s = int((a + b) * 2)
m = int(a * b)
print(m, s) | Traceback (most recent call last):
File "/tmp/tmpwqk0wl9l/tmpi3a3cul2.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s081323455 | p02389 | u496999590 | 1464835580 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a,b=map(int,input().split())
print(a*b,2*a+2*b); | Traceback (most recent call last):
File "/tmp/tmp4ahuhfup/tmpoxa88geh.py", line 1, in <module>
a,b=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s890006638 | p02389 | u444997287 | 1465458556 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a = int(input())
b = int(input())
print(a * b)
print(a*2 + b*2) | Traceback (most recent call last):
File "/tmp/tmp42nudirz/tmp0vjdld9a.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s638241935 | p02389 | u734072322 | 1465527753 | Python | Python | py | Runtime Error | 0 | 0 | 81 | n = raw_input()
a = n.split()
b = a[0] * a[1]
c = (a[0] + a[1]) * 2
print b c | File "/tmp/tmp1vep9txt/tmpwxrzg2b6.py", line 9
print b c
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s541169014 | p02389 | u734072322 | 1465528480 | Python | Python | py | Runtime Error | 0 | 0 | 83 | n = raw_input()
a = n.split()
b = a[0] * a[1]
c = (a[0] + a[1]) * 2
print b , c | File "/tmp/tmp85ijqp89/tmptn6bh530.py", line 9
print b , c
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s168003777 | p02389 | u734072322 | 1465528774 | Python | Python | py | Runtime Error | 0 | 0 | 88 | n = raw_input()
a = int(n.split())
b = a[0] * a[1]
c = (a[0] + a[1]) * 2
print b , c | File "/tmp/tmpuai_zgmm/tmp7qg_keyi.py", line 9
print b , c
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s399750319 | p02389 | u269653912 | 1466017333 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | a, b = map(int, input().split())
def S:
return a*b
return 2*(a+b)
print S | File "/tmp/tmpaibcj7k_/tmpgv_i4rxv.py", line 2
def S:
^
SyntaxError: expected '('
| |
s305949375 | p02389 | u269653912 | 1466017527 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a,b = list(map(int, input().split()))
print(a*b, 2(a+b)) | File "/tmp/tmpt1l59udw/tmpdpr6tzmo.py", line 2
print(a*b, 2(a+b))
IndentationError: unexpected indent
| |
s799213875 | p02389 | u269653912 | 1466017552 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a,b = list(map(int, input().split()))
print(a*b, 2(a+b)) | /tmp/tmpbtvuoig_/tmpocir21vt.py:2: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma?
print(a*b, 2(a+b))
Traceback (most recent call last):
File "/tmp/tmpbtvuoig_/tmpocir21vt.py", line 1, in <module>
a,b = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s307381290 | p02389 | u269653912 | 1466017599 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a,b = list(map(int, input().split()))
print(a*b, 2(a+b)) | /tmp/tmpqb0aui1q/tmpshrk0iy_.py:2: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma?
print(a*b, 2(a+b))
Traceback (most recent call last):
File "/tmp/tmpqb0aui1q/tmpshrk0iy_.py", line 1, in <module>
a,b = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s048609026 | p02389 | u565781955 | 1466521566 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | a,b = int(input().split())
print( a*b , 2 * (a+b) ) | Traceback (most recent call last):
File "/tmp/tmp8swqd8d5/tmp8334y3u1.py", line 1, in <module>
a,b = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s915877274 | p02389 | u350997408 | 1467019319 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | # coding: utf-8
a = int(input())
b = int(input())
menseki = a * b
print(menseki, a*2 + b*2) | Traceback (most recent call last):
File "/tmp/tmpxkheyfjr/tmpmkbcfa8j.py", line 2, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s707337008 | p02389 | u479110133 | 1468038322 | 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/tmp08hd_o2h/tmpmsg0qx2m.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s569847031 | p02389 | u162598098 | 1469104273 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a=(input())
b=float(input())
print(a*b,2*(a+b)) | Traceback (most recent call last):
File "/tmp/tmptsf5tcmp/tmpcizcmike.py", line 1, in <module>
a=(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s155430845 | p02389 | u162598098 | 1469104300 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a=(input())
b=float(input())
print(a*b 2*(a+b)) | File "/tmp/tmpqtmg_r6m/tmpjmfslxq6.py", line 3
print(a*b 2*(a+b))
^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s032722979 | p02389 | u162598098 | 1469104321 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a=(input())
b=float(input())
print(a*b)
print(2*(a+b)) | Traceback (most recent call last):
File "/tmp/tmpqfoa3758/tmplp3ru5hl.py", line 1, in <module>
a=(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s619794412 | p02389 | u626838615 | 1469156068 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | a,b = list(map(int,input().split(" "))
print(a*b,a*2+b*2) | File "/tmp/tmpn0t6rl2f/tmp2cql4dtm.py", line 1
a,b = list(map(int,input().split(" "))
^
SyntaxError: '(' was never closed
| |
s471138087 | p02389 | u169013892 | 1469326004 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | #coding: utf-8
line=input()
lines=line.split(" ")
a=lines[0]
b=lines[1]
print ((a+b)*2+" "+(a*b)) | Traceback (most recent call last):
File "/tmp/tmpz2qewwf5/tmpriyqrqwd.py", line 3, in <module>
line=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s529521249 | p02389 | u169013892 | 1469326170 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | #coding: utf-8
line=input()
lines=line.split(" ")
a=lines[0]
b=lines[1]
print ("%s %s",(a+b)*2,a*b) | Traceback (most recent call last):
File "/tmp/tmpnkt_1gku/tmpq59j87nm.py", line 3, in <module>
line=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s869982801 | p02389 | u612243550 | 1469373555 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | a, b = map(int, input().split(' '))
print( a * b, 2a + 2b) | File "/tmp/tmpu_jslyjf/tmp8l28n3pf.py", line 2
print( a * b, 2a + 2b)
^
SyntaxError: invalid decimal literal
| |
s361791701 | p02389 | u587193722 | 1469511187 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | ab = input().split()
print(ab[0]*ab[1]) | Traceback (most recent call last):
File "/tmp/tmpb2dmiaxs/tmp4_s54ueo.py", line 1, in <module>
ab = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s466605684 | p02389 | u498041957 | 1469511362 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a, b = [input(i) for i in input().split()]
print(a, b) | Traceback (most recent call last):
File "/tmp/tmpir7omy62/tmpc_qdh16v.py", line 1, in <module>
a, b = [input(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s466478443 | p02389 | u644636020 | 1469511447 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a, b = [int(i) for i in input().split()]
print(a, b)javascript:void(0) | File "/tmp/tmpcvpsngn6/tmpl727n0df.py", line 2
print(a, b)javascript:void(0)
^^^^^^^^^^
SyntaxError: invalid syntax
| |
s798872588 | p02389 | u204883389 | 1469511652 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a, b = [int(i) for i in input(),split()]
print(a * b, (a + b) * 2) | File "/tmp/tmp8oiaqujd/tmp4eu5dxds.py", line 1
a, b = [int(i) for i in input(),split()]
^
SyntaxError: invalid syntax
| |
s545816538 | p02389 | u671553883 | 1469511758 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a, b = [int(i) for i in input().split]
print(a * b, (a + b) * 2) | Traceback (most recent call last):
File "/tmp/tmpmauc_e8j/tmp9v623epk.py", line 1, in <module>
a, b = [int(i) for i in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s104460062 | p02389 | u671553883 | 1469511839 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a, b = [int(i) for i in input().split]
print(a * b, (a + b) * 2) | Traceback (most recent call last):
File "/tmp/tmpo79m0kwr/tmp_7w4o3r0.py", line 1, in <module>
a, b = [int(i) for i in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s380728055 | p02389 | u514745787 | 1469511907 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a, b = [int(i) for i in input().split()]
a = int(ab[0])
b = int(ab[1])
print(a*b, (a+b)*2) | Traceback (most recent call last):
File "/tmp/tmppg8j46n9/tmpofalfayy.py", line 1, in <module>
a, b = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s557593576 | p02389 | u514745787 | 1469511937 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a, b = input().split()
a = int(ab[0])
b = int(ab[1])
print(a*b, (a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpfzrllt8g/tmp1qtsj_06.py", line 1, in <module>
a, b = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s388829398 | p02389 | u661284763 | 1469512022 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | a,b = [int(i) for i in input().split()]
print(a * b,(a + b) * 2)) | File "/tmp/tmp49t3xir6/tmpyqg4k3at.py", line 2
print(a * b,(a + b) * 2))
^
SyntaxError: unmatched ')'
| |
s346111835 | p02389 | u216425054 | 1470496571 | 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/tmpve_m5p0k/tmpu8af906e.py", line 1, in <module>
(a,b)=map(int(),input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s604454309 | p02389 | u216425054 | 1470497102 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | [a,b]=map(int,raw_input().split())
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpz25kj0g0/tmp6pw4bnc8.py", line 1, in <module>
[a,b]=map(int,raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s774217328 | p02389 | u216425054 | 1470497174 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | a,b=map(int,raw_input().split())
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpk9fho5iu/tmpfyksu3js.py", line 1, in <module>
a,b=map(int,raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s528355718 | p02389 | u216425054 | 1470497192 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a,b=map(int,raw_input().split())
print a*b,(a+b)*2 | File "/tmp/tmpmoeb3yy3/tmpn5iaemqg.py", line 2
print a*b,(a+b)*2
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s856583769 | p02389 | u216425054 | 1470497225 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a,b=map(int,input().split())
print a*b,(a+b)*2 | File "/tmp/tmpnf1abbcg/tmpdorhzzsa.py", line 2
print a*b,(a+b)*2
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s706703257 | p02389 | u216425054 | 1470497302 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | [a,b]=map(int,input().split())
print(a*b,(a+b)*) | File "/tmp/tmpoto_s3t6/tmpkgdphfy9.py", line 2
print(a*b,(a+b)*)
^
SyntaxError: invalid syntax
| |
s316043191 | p02389 | u270685394 | 1470542091 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | a,b = int(input())
print(a * b) | Traceback (most recent call last):
File "/tmp/tmp_2hadgx6/tmpgrkpn9xt.py", line 1, in <module>
a,b = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s384618623 | p02389 | u270685394 | 1470542221 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a, b = int(input())
print(a*b)
print(2*(a*b)) | Traceback (most recent call last):
File "/tmp/tmp9h3qiq59/tmp_ptyhl6x.py", line 1, in <module>
a, b = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s505245253 | p02389 | u270685394 | 1470542292 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | a, b = int(input())
print(a * b)
print(2 * (a + b)) | Traceback (most recent call last):
File "/tmp/tmp3j_lp0qp/tmpdernhqhg.py", line 1, in <module>
a, b = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s825567970 | p02389 | u270685394 | 1470542528 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a, b = int(input().split())
print(a * b)
print(2 * (a + b)) | Traceback (most recent call last):
File "/tmp/tmpqkk_o9hw/tmptatyeayx.py", line 1, in <module>
a, b = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s270816664 | p02389 | u270685394 | 1470542569 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a, b = int(input().split())
print(a * b)
print(2 * (a + b)) | File "/tmp/tmpip_tdege/tmprnhstqfc.py", line 4
print(2 * (a + b))
IndentationError: unexpected indent
| |
s277208351 | p02389 | u270685394 | 1470542760 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a, b = int(input().split())
print(a * b)
print(2 * (a + b)) | Traceback (most recent call last):
File "/tmp/tmp7svbl772/tmpz3ryeeu3.py", line 1, in <module>
a, b = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s784126010 | p02389 | u270685394 | 1470542785 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a, b = int(input().solit())
print(a * b)
print(2 * (a + b)) | Traceback (most recent call last):
File "/tmp/tmppawvipro/tmp523f6912.py", line 1, in <module>
a, b = int(input().solit())
^^^^^^^
EOFError: EOF when reading a line
| |
s807797421 | p02389 | u270685394 | 1470712265 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a,b = int(input().split())
print(a * b)
print(2 * a + b) | Traceback (most recent call last):
File "/tmp/tmp_1xwa86d/tmp9g28ow9f.py", line 1, in <module>
a,b = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s101463247 | p02389 | u270685394 | 1470712352 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a,b = int(input().split())
print(a * b)
print(2 * (a + b)) | Traceback (most recent call last):
File "/tmp/tmpabq7n0tg/tmp6iipjj75.py", line 1, in <module>
a,b = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s375632896 | p02389 | u998435601 | 1470850376 | Python | Python | py | Runtime Error | 0 | 0 | 96 | line = raw_input()
a = line.split(" ")
s = a[0] * a[1]
len = 2 * s
print str(s) + " " + str(len) | File "/tmp/tmput7pborr/tmpz9_a6e8q.py", line 5
print str(s) + " " + str(len)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s961888750 | p02389 | u998435601 | 1470850500 | Python | Python | py | Runtime Error | 0 | 0 | 108 | line = raw_input()
a = line.split(" ")
s = a[0] * a[1]
len = 2 * (a[0] + a[1])
print str(s) + " " + str(len) | File "/tmp/tmp75v7r6i5/tmpajye72dy.py", line 5
print str(s) + " " + str(len)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s629939806 | p02389 | u998435601 | 1470850770 | Python | Python | py | Runtime Error | 0 | 0 | 105 | line = raw_input()
a = line.split()
s = a[0] * a[1]
len = 2 * (a[0] + a[1])
print str(s) + " " + str(len) | File "/tmp/tmpa2jc5q18/tmpviwu1xnv.py", line 5
print str(s) + " " + str(len)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s570929969 | p02389 | u652525711 | 1470914443 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | input_lines = input().split(" ")
a = int(input_liens[0])
b = int(input_liens[1])
print(a * b + " " + a * 2 + b * 2) | Traceback (most recent call last):
File "/tmp/tmpu83z57_k/tmpz43wzycs.py", line 1, in <module>
input_lines = input().split(" ")
^^^^^^^
EOFError: EOF when reading a line
| |
s375415703 | p02389 | u655138261 | 1471444423 | Python | Python | py | Runtime Error | 0 | 0 | 75 | #coding:utf-8
a = input()
b = input()
print (str(a*b) + " " + str(2*a+2*b)) | Traceback (most recent call last):
File "/tmp/tmprqjarsfp/tmpy0h_g0a6.py", line 2, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s923636841 | p02389 | u655138261 | 1471444530 | Python | Python | py | Runtime Error | 0 | 0 | 56 | #coding:utf-8
a = input()
b = input()
print a*b, 2*a+2*b | File "/tmp/tmp65jb2imz/tmp84y6asy3.py", line 4
print a*b, 2*a+2*b
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s469881263 | p02389 | u788795188 | 1471682121 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | x=int(input())
y=int(input())
print(x*y end=""2*(x*y)) | File "/tmp/tmpo75oynp_/tmpqv_dv4k0.py", line 4
print(x*y end=""2*(x*y))
^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s101134889 | p02389 | u231136358 | 1471769796 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a = [int(item) for item in input().split()]
print(2*(a[0]+a[1]) + " " + a[0]*a[1]) | Traceback (most recent call last):
File "/tmp/tmpuzw3s2jz/tmppmudfdo_.py", line 1, in <module>
a = [int(item) for item in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s908346511 | p02389 | u047093194 | 1473168204 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | x = list(map(int,input().split()))
print(x[0]*x[1] x[0]*2+x[1]*2) | File "/tmp/tmpn5133cxg/tmpn0ifq_2l.py", line 2
print(x[0]*x[1] x[0]*2+x[1]*2)
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s422448514 | p02389 | u047093194 | 1473168286 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | x = list(map(int,input().split()))
print(x[0]*x[1] x[0]*2+x[1]*2) | File "/tmp/tmpfm8kl4ky/tmpqyn1hnj_.py", line 2
print(x[0]*x[1] x[0]*2+x[1]*2)
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s299365543 | p02389 | u362094064 | 1473316968 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | 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/tmpkwlmoyre/tmp0y2teuro.py", line 1, in <module>
x = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s703786341 | p02389 | u302561071 | 1473478054 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a = map(int,raw_input().split())
print(a[0]*a[1])
print(" ")
print(a[0]*2 + a[1]*2) | Traceback (most recent call last):
File "/tmp/tmp5cazp4bj/tmp3nia6uff.py", line 1, in <module>
a = map(int,raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s420002126 | p02389 | u822442916 | 1474032817 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | (a,b)=(int(),int())
x=a*b
y=(a+b)*2
print(x y) | File "/tmp/tmp3myjgf9q/tmp3usm5bcf.py", line 4
print(x y)
^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s640981231 | p02389 | u822442916 | 1474035455 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b=map(int input().split())
print(a*b (a+b)*2) | File "/tmp/tmpxu_mkrya/tmpoub6_dbp.py", line 1
a,b=map(int input().split())
^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s877580700 | p02389 | u822442916 | 1474035532 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b=map(int,input().split())
print(a*b (a+b)*2) | Traceback (most recent call last):
File "/tmp/tmprepvfksh/tmp1kdjzctb.py", line 1, in <module>
a,b=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s425360068 | p02389 | u822442916 | 1474035699 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b=map(int,input().split())
print(a*b (a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpw37qvyu0/tmpy7mvl2x8.py", line 1, in <module>
a,b=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s743934228 | p02389 | u822442916 | 1474035806 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | a,b=map(int,input())
print(a*b (a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpl3lfthp3/tmpxxucso3r.py", line 1, in <module>
a,b=map(int,input())
^^^^^^^
EOFError: EOF when reading a line
| |
s365888358 | p02389 | u648470099 | 1474190011 | Python | Python | py | Runtime Error | 0 | 0 | 49 | x,y=map(int, input().split())
a=int(x*y)
print(a) | Traceback (most recent call last):
File "/tmp/tmpjg2uy6vi/tmpez302rmo.py", line 1, in <module>
x,y=map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s246410112 | p02389 | u822442916 | 1474197086 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a,b=map(int,input().split(''))
print(a*b 2*a+2*b) | File "/tmp/tmp9x8t5r04/tmpoo0ivccd.py", line 2
print(a*b 2*a+2*b)
^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s183018592 | p02389 | u822442916 | 1474197128 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | (a,b)=map(int,input().split(''))
print(a*b 2*a+2*b) | File "/tmp/tmpg1dqjz0l/tmpjal0nb_q.py", line 2
print(a*b 2*a+2*b)
^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.