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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s370487135 | p02389 | u047737909 | 1452487469 | Python | Python | py | Runtime Error | 0 | 0 | 73 | a,b = map(int, raw_input().split())
c = a*b
d = 2*(a+b)
print'%d %d'%(c,d | File "/tmp/tmpx1e_jbcg/tmpl7yp4n6p.py", line 4
print'%d %d'%(c,d
^
SyntaxError: '(' was never closed
| |
s721985168 | p02389 | u663227983 | 1452508835 | Python | Python | py | Runtime Error | 0 | 0 | 59 | m = map(int, input().split())
print m[0]*m[1],2*(m[0]+m[1]) | File "/tmp/tmpmc2ivctx/tmp4jemc_zb.py", line 2
print m[0]*m[1],2*(m[0]+m[1])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s406952549 | p02389 | u663227983 | 1452508859 | Python | Python | py | Runtime Error | 0 | 0 | 58 | m = map(int,input().split())
print m[0]*m[1],2*(m[0]+m[1]) | File "/tmp/tmpsjf8own1/tmpwjax61cp.py", line 2
print m[0]*m[1],2*(m[0]+m[1])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s686065215 | p02389 | u663227983 | 1452508871 | Python | Python | py | Runtime Error | 0 | 0 | 58 | m = map(int,input().split())
print m[0]*m[1],2*(m[0]+m[1]) | File "/tmp/tmpqo3axkk9/tmp3n8uwm2a.py", line 2
print m[0]*m[1],2*(m[0]+m[1])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s380840112 | p02389 | u233232390 | 1452570225 | Python | Python | py | Runtime Error | 0 | 0 | 42 | a = input()
b = input()
print(a*b,2*a+2*b) | Traceback (most recent call last):
File "/tmp/tmpx19_vg_p/tmpebayr8tj.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s870514492 | p02389 | u233232390 | 1452570268 | Python | Python | py | Runtime Error | 0 | 0 | 56 | a = input()
b = input()
s = a*b
l = 2*a + 2*b
print(s,l) | Traceback (most recent call last):
File "/tmp/tmpl85g6_fx/tmpmdd2qcqy.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s083696299 | p02389 | u424209323 | 1452571589 | Python | Python | py | Runtime Error | 0 | 0 | 44 | num = split().input()
print num[1] * num[2] | File "/tmp/tmptqix2dqu/tmpi2eookrd.py", line 3
print num[1] * num[2]
^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s250975600 | p02389 | u424209323 | 1452571707 | Python | Python | py | Runtime Error | 0 | 0 | 48 | num = split().raw_input()
print num[1] * num[2] | File "/tmp/tmpp0c4s49r/tmps4j901dg.py", line 3
print num[1] * num[2]
^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s816038458 | p02389 | u424209323 | 1452571728 | Python | Python | py | Runtime Error | 0 | 0 | 48 | num = raw_input().split()
print num[1] * num[2] | File "/tmp/tmpskawnh6b/tmpxixveg1r.py", line 3
print num[1] * num[2]
^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s700115580 | p02389 | u424209323 | 1452571773 | Python | Python | py | Runtime Error | 0 | 0 | 58 | num = map(int, raw_input().split())
print num[1] * num[2] | File "/tmp/tmppbvqm_6b/tmp4co3ol9c.py", line 3
print num[1] * num[2]
^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s564866663 | p02389 | u424209323 | 1452572964 | Python | Python | py | Runtime Error | 0 | 0 | 79 | num = map(int, raw_input().split())
print num[0] * num[1] 2*num[0] + 2*num[1] | File "/tmp/tmp3aa4mmra/tmp1g6_fesj.py", line 3
print num[0] * num[1] 2*num[0] + 2*num[1]
^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s168525695 | p02389 | u456885296 | 1452575442 | Python | Python | py | Runtime Error | 0 | 0 | 50 | a,b=map(int,raw_input(),split())
print a*b,(a+b)*2 | File "/tmp/tmprqc9_fxi/tmpppjtvtib.py", line 2
print a*b,(a+b)*2
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s229287691 | p02389 | u078762447 | 1452576022 | Python | Python | py | Runtime Error | 0 | 0 | 78 | l = map( int , raw_input().split())
print l[0] * l[1] ' ' l[0] * 2 + l[1] * 2 | File "/tmp/tmp4jolo84m/tmp0o10okv5.py", line 3
print l[0] * l[1] ' ' l[0] * 2 + l[1] * 2
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s222714830 | p02389 | u532962080 | 1452578972 | Python | Python | py | Runtime Error | 0 | 0 | 60 | a = int(raw_input())
b = int(raw_input())
print a*b, (a+b)*2 | File "/tmp/tmpvbjgdq3v/tmpufed6xcr.py", line 3
print a*b, (a+b)*2
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s439066569 | p02389 | u532962080 | 1452579008 | Python | Python | py | Runtime Error | 0 | 0 | 59 | a = int(raw_input())
b = int(raw_input())
print a*b (a+b)*2 | File "/tmp/tmp1t5jjk9c/tmp1unlrg5o.py", line 3
print a*b (a+b)*2
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s239358005 | p02389 | u532962080 | 1452579245 | Python | Python | py | Runtime Error | 0 | 0 | 50 | a = raw_input()
b = raw_input()
print a*b, (a+b)*2 | File "/tmp/tmp7n20kz8q/tmp28gghjpx.py", line 3
print a*b, (a+b)*2
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s511955906 | p02389 | u532962080 | 1452579555 | Python | Python | py | Runtime Error | 0 | 0 | 54 | a, b = map(int, raw_input().split())
print a*b (a+b)*2 | File "/tmp/tmpr9jwqzit/tmpa9e4n0h1.py", line 2
print a*b (a+b)*2
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s378708958 | p02389 | u532962080 | 1452579661 | Python | Python | py | Runtime Error | 0 | 0 | 57 | a, b = map(int, raw_input().split())
return (a*b (a+b)*b) | File "/tmp/tmpi8ftee7w/tmp2gsgqrbl.py", line 2
return (a*b (a+b)*b)
^^^^^^^^^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s083449297 | p02389 | u532962080 | 1452579787 | Python | Python | py | Runtime Error | 0 | 0 | 53 | a,b = map(int, raw_input().split())
print a*b (a+b)*b | File "/tmp/tmpc9x4rvlu/tmpccoalk2w.py", line 2
print a*b (a+b)*b
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s156631872 | p02389 | u078762447 | 1452588738 | Python | Python | py | Runtime Error | 0 | 0 | 90 | l = map( int , raw_input().split())
s = l[0] * l[1]
r = l[0] * 2 + l[1] * 2
print s '' r | File "/tmp/tmp0l6y30vv/tmpf44huade.py", line 6
print s '' r
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s223849976 | p02389 | u078762447 | 1452588794 | Python | Python | py | Runtime Error | 0 | 0 | 87 | l = map( int , raw_input().split())
s = l[0] * l[1]
r = l[0] * 2 + l[1] * 2
print s r | File "/tmp/tmpmmpxwde8/tmpgs8aro_v.py", line 6
print s r
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s644477493 | p02389 | u078762447 | 1452589290 | Python | Python | py | Runtime Error | 0 | 0 | 91 | l = map( int , raw_input().split())
s = l[0] * l[1]
r = ( l[0] + l[1] ) * 2
print s+' '+r | File "/tmp/tmp7355viqv/tmpgttibl56.py", line 6
print s+' '+r
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s310236442 | p02389 | u078762447 | 1452589347 | Python | Python | py | Runtime Error | 0 | 0 | 101 | l = map( int , raw_input().split())
s = l[0] * l[1]
r = l[0] + l[0] + l[1] + l[1]
print s + ' ' + r | File "/tmp/tmp2vls8q0s/tmp1mrb9z29.py", line 6
print s + ' ' + r
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s691506349 | p02389 | u828153094 | 1452619599 | Python | Python | py | Runtime Error | 0 | 0 | 43 | a = input(), b = input()
print a*b, 2*(a+b) | File "/tmp/tmpfjbguu7u/tmpjswzyvl1.py", line 1
a = input(), b = input()
^^^^^^^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s140182653 | p02389 | u828153094 | 1452619891 | Python | Python | py | Runtime Error | 0 | 0 | 33 | a b = input()
print a*b 2*(a + b) | File "/tmp/tmphmu53bmo/tmp0m8eu7f_.py", line 1
a b = input()
^
SyntaxError: invalid syntax
| |
s357202090 | p02389 | u828153094 | 1452620021 | Python | Python | py | Runtime Error | 0 | 0 | 51 | a = input(),
b = input()
print a*b,
print 2*(a + b) | File "/tmp/tmp94i5vh40/tmpg51fsqht.py", line 3
print a*b,
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s152541795 | p02389 | u828153094 | 1452620129 | Python | Python | py | Runtime Error | 0 | 0 | 33 | a, b = input()
print a*b, 2*(a+b) | File "/tmp/tmpdnfl7miu/tmp4se0q7jg.py", line 2
print a*b, 2*(a+b)
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s320497190 | p02389 | u828153094 | 1452620400 | Python | Python | py | Runtime Error | 0 | 0 | 49 | a = input()
b = input()
print a*b
print 2*(a + b) | File "/tmp/tmpm5po0ly6/tmpwedg9g2e.py", line 3
print a*b
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s310535256 | p02389 | u828153094 | 1452620461 | Python | Python | py | Runtime Error | 0 | 0 | 51 | a = input(),
b = input()
print a*b,
print 2*(a + b) | File "/tmp/tmph28ehqu4/tmpslhny_ed.py", line 3
print a*b,
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s827458809 | p02389 | u828153094 | 1452621914 | Python | Python | py | Runtime Error | 0 | 0 | 33 | a,b = input()
print a*b,2*(a + b) | File "/tmp/tmp7tbtg92q/tmpbt5ualjh.py", line 2
print a*b,2*(a + b)
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s072473530 | p02389 | u828153094 | 1452622096 | Python | Python | py | Runtime Error | 0 | 0 | 51 | a = input(),
b = input()
print a*b,
print 2*(a + b) | File "/tmp/tmpp7zfhuhl/tmpgbj1spby.py", line 3
print a*b,
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s136223202 | p02389 | u985628197 | 1453121100 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | import sys
param=sys.argv
menseki=int(param[1])*int(param[2])
nagasa=int(param[1])*2+int(param[2])*2
print(menseki nagasa) | File "/tmp/tmp1eis3g9j/tmpj_bv2aeo.py", line 5
print(menseki nagasa)
^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s498234586 | p02389 | u985628197 | 1453121195 | Python | Python | py | Runtime Error | 0 | 0 | 122 | import sys
param=sys.argv
menseki=int(param[1])*int(param[2])
nagasa=int(param[1])*2+int(param[2])*2
print(menseki nagasa) | File "/tmp/tmp8wpi26m4/tmp6_v9qpn_.py", line 5
print(menseki nagasa)
^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s242469622 | p02389 | u985628197 | 1453121292 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | import sys
param=sys.argv
menseki=int(param[1])*int(param[2])
nagasa=int(param[1])*2+int(param[2])*2
print(menseki\ nagasa) | File "/tmp/tmpwbwdrfz1/tmp_hxzpqrc.py", line 5
print(menseki\ nagasa)
^
SyntaxError: unexpected character after line continuation character
| |
s580746451 | p02389 | u985628197 | 1453121372 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | import sys
param=sys.argv
menseki=int(param[1])*int(param[2])
nagasa=int(param[1])*2+int(param[2])*2
print(menseki,nagasa) | Traceback (most recent call last):
File "/tmp/tmp2l7v58zw/tmp_tdrt1_d.py", line 3, in <module>
menseki=int(param[1])*int(param[2])
~~~~~^^^
IndexError: list index out of range
| |
s072243696 | p02389 | u985628197 | 1453121628 | Python | Python | py | Runtime Error | 0 | 0 | 121 | import sys
param=sys.argv
menseki=int(param[1])*int(param[2])
nagasa=int(param[1])*2+int(param[2])*2
print menseki nagasa | File "/tmp/tmp6esz66cl/tmpkvksoy05.py", line 5
print menseki nagasa
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s385484402 | p02389 | u985628197 | 1453121737 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | import sys
param=sys.argv
menseki=int(param[1])*int(param[2])
nagasa=int(param[1])*2+int(param[2])*2
print(str(menseki)+" "+str(nagasa)) | Traceback (most recent call last):
File "/tmp/tmp8zuluok_/tmpq5x5_dx_.py", line 3, in <module>
menseki=int(param[1])*int(param[2])
~~~~~^^^
IndexError: list index out of range
| |
s009584745 | p02389 | u985628197 | 1453121790 | Python | Python | py | Runtime Error | 0 | 0 | 136 | import sys
param=sys.argv
menseki=int(param[1])*int(param[2])
nagasa=int(param[1])*2+int(param[2])*2
print(str(menseki)+" "+str(nagasa)) | Traceback (most recent call last):
File "/tmp/tmpqt890cz2/tmp2wreep0u.py", line 3, in <module>
menseki=int(param[1])*int(param[2])
~~~~~^^^
IndexError: list index out of range
| |
s335094250 | p02389 | u985628197 | 1453121918 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | import sys
param=input().split()
menseki=int(param[0])*int(param[1])
nagasa=int(param[0])*2+int(param[1])*2
print(menseki nagasa) | File "/tmp/tmp6zcwq4mb/tmpcij2aozf.py", line 5
print(menseki nagasa)
^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s901810951 | p02389 | u803327846 | 1453210395 | Python | Python | py | Runtime Error | 0 | 0 | 68 | a = raw_input() . split()
print a[0] * a[1]
print 2 * (a[0] + a[1]) | File "/tmp/tmpenao1ihp/tmp5v67ippu.py", line 3
print a[0] * a[1]
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s007015941 | p02389 | u803327846 | 1453210646 | Python | Python | py | Runtime Error | 0 | 0 | 77 | a = raw_input() . split()
S = a[0] * a[1]
O = 2 * (a[0] + a[1])
print S + O | File "/tmp/tmpx7k3tcol/tmpiwro6omk.py", line 6
print S + O
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s448717568 | p02389 | u803327846 | 1453211477 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a = raw_input() . split()
S = a[0] * a[1]
O = 2 * (a[0] + a[1])
print S
print O | File "/tmp/tmpspcg8tam/tmpguap9z_x.py", line 6
print S
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s920557615 | p02389 | u803327846 | 1453212021 | Python | Python | py | Runtime Error | 0 | 0 | 76 | a = raw_input() . split()
S = a[0] * a[1]
O = 2 * (a[0] + a[1])
print S, O | File "/tmp/tmp2k3ct66a/tmps89q2svf.py", line 6
print S, O
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s776636386 | p02389 | u803327846 | 1453212174 | Python | Python | py | Runtime Error | 0 | 0 | 77 | a = raw_input(). split()
S = a[0] * a[1]
O = 2 * a[0] + 2 * a[1]
print S , O | File "/tmp/tmpck_hhq_3/tmpqrr4zu3z.py", line 5
print S , O
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s565276819 | p02389 | u803327846 | 1453212454 | Python | Python | py | Runtime Error | 0 | 0 | 82 | a , b= raw_input(). split()
S = a * b
O = 2 * a + 2 * b
print str(S) + ' ' str(O) | File "/tmp/tmp76sow4ko/tmprgpuum60.py", line 5
print str(S) + ' ' str(O)
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s765849666 | p02389 | u803327846 | 1453212471 | Python | Python | py | Runtime Error | 0 | 0 | 85 | a , b= raw_input(). split()
S = a * b
O = 2 * a + 2 * b
print str(S) + ' ' + str(O) | File "/tmp/tmprdx3dzfe/tmp17ia6_ij.py", line 5
print str(S) + ' ' + str(O)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s497990499 | p02389 | u828153094 | 1453220047 | Python | Python | py | Runtime Error | 0 | 0 | 54 | a, b = map(int, raw_input().split())
print a*b 2*(a+b) | File "/tmp/tmp0_5qqn43/tmpux6oniv_.py", line 2
print a*b 2*(a+b)
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s406625985 | p02389 | u834702748 | 1453555488 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | lists = split( )
a = int(lists[0])
b = int(lists[1])
sq = a * b
length = (a + b) * 2
print(sq, length) | Traceback (most recent call last):
File "/tmp/tmpg0nr37ec/tmp9esocp0n.py", line 1, in <module>
lists = split( )
^^^^^
NameError: name 'split' is not defined
| |
s386260761 | p02389 | u834702748 | 1453555804 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | lists = split( )
a = int(lists[0])
b = int(lists[1])
sq = a * b
length = a * 2 + b * 2
print(sq, length) | Traceback (most recent call last):
File "/tmp/tmpthnjcrix/tmpg71d2zmc.py", line 1, in <module>
lists = split( )
^^^^^
NameError: name 'split' is not defined
| |
s626359603 | p02389 | u790959181 | 1453904852 | Python | Python | py | Runtime Error | 0 | 0 | 79 | a = raw_input()
x,y = a.split
x = int(x)
y = int(y)
print x*y + " " + x*2 + y*2 | File "/tmp/tmp5u7m8_i5/tmpha4s_6pm.py", line 5
print x*y + " " + x*2 + y*2
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s068727042 | p02389 | u790959181 | 1453904873 | Python | Python | py | Runtime Error | 0 | 0 | 79 | a = raw_input()
x,y = a.split
n = int(x)
m = int(y)
print n*m + " " + n*2 + m*2 | File "/tmp/tmpy6x_ax38/tmpy63jonz_.py", line 5
print n*m + " " + n*2 + m*2
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s501612712 | p02389 | u790959181 | 1453904912 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a = raw_input()
x,y = a.split()
n = int(x)
m = int(y)
print n*m + " " + n*2 + m*2 | File "/tmp/tmp4j4s4yj7/tmpgpz3y36k.py", line 5
print n*m + " " + n*2 + m*2
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s372882322 | p02389 | u790959181 | 1453905025 | Python | Python | py | Runtime Error | 0 | 0 | 84 | a = raw_input()
x,y = a.split(" ")
n = int(x)
m = int(y)
print n*m + " " + n*2 + m*2 | File "/tmp/tmpcbx65ial/tmpmph37az1.py", line 5
print n*m + " " + n*2 + m*2
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s853771539 | p02389 | u790959181 | 1453905082 | Python | Python | py | Runtime Error | 0 | 0 | 104 | a = raw_input()
x,y = a.split(" ")
n = int(x)
m = int(y)
S = n*m
SUM = n * 2 + m * 2
print S + " " + SUM | File "/tmp/tmpn32ra1e0/tmp5fjwy6qi.py", line 7
print S + " " + SUM
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s232634060 | p02389 | u790959181 | 1453905124 | Python | Python | py | Runtime Error | 0 | 0 | 106 | a = raw_input()
[x,y] = a.split(" ")
n = int(x)
m = int(y)
S = n*m
SUM = n * 2 + m * 2
print S + " " + SUM | File "/tmp/tmpwg62xu0x/tmpgl5997l0.py", line 7
print S + " " + SUM
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s701007670 | p02389 | u790959181 | 1453905213 | Python | Python | py | Runtime Error | 0 | 0 | 102 | a = raw_input().split(" ")
n = int(a[0])
m = int(a[1])
S = n*m
SUM = n * 2 + m * 2
print S + " " + SUM | File "/tmp/tmpkamqjbd6/tmpfcexecqi.py", line 6
print S + " " + SUM
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s970343661 | p02389 | u790959181 | 1453905325 | Python | Python | py | Runtime Error | 0 | 0 | 110 | a = raw_input()
x,y = a.split(" ")
n = int(a[0])
m = int(a[1])
S = n*m
SUM = n * 2 + m * 2
print S + " " + SUM | File "/tmp/tmpav4_bxwc/tmp2yfxeght.py", line 7
print S + " " + SUM
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s720533105 | p02389 | u436807165 | 1454986995 | Python | Python | py | Runtime Error | 0 | 0 | 43 | a = input()
b = input()
print a*b,2 * (a+b) | File "/tmp/tmp4w0yls38/tmp79s0uyjo.py", line 3
print a*b,2 * (a+b)
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s935239738 | p02389 | u436807165 | 1454987019 | Python | Python | py | Runtime Error | 0 | 0 | 42 | a = input()
b = input()
print a*b, 2*(a+b) | File "/tmp/tmpd92lujue/tmp65y3syhh.py", line 3
print a*b, 2*(a+b)
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s317935686 | p02389 | u436807165 | 1454987025 | Python | Python | py | Runtime Error | 0 | 0 | 42 | a = input()
b = input()
print a*b, 2*(a+b) | File "/tmp/tmplpje4ysk/tmpsrjiiprk.py", line 3
print a*b, 2*(a+b)
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s146415705 | p02389 | u436807165 | 1454987063 | Python | Python | py | Runtime Error | 0 | 0 | 42 | a = input()
b = input()
print a*b, 2*(a+b) | File "/tmp/tmp9m3fu_d8/tmp89mv8jrc.py", line 3
print a*b, 2*(a+b)
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s618410066 | p02389 | u436807165 | 1454987423 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a,b = map(int,input().split())
print a*b,2*(a+b) | File "/tmp/tmpchrj0epw/tmp7yhj33ro.py", line 2
print a*b,2*(a+b)
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s220478705 | p02389 | u436807165 | 1454987474 | Python | Python | py | Runtime Error | 0 | 0 | 50 | (a,b) = map(int,input().split())
print a*b,2*(a+b) | File "/tmp/tmpaj7h031m/tmpz97ije5x.py", line 2
print a*b,2*(a+b)
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s444851248 | p02389 | u265577530 | 1455255691 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | x=input().split()
print(str(x[0]*2+x[1]*2) + " ")
print(x[0]*x[1]) | Traceback (most recent call last):
File "/tmp/tmphitmbpms/tmpk4mub55w.py", line 1, in <module>
x=input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s734543672 | p02389 | u905964869 | 1455353723 | Python | Python | py | Runtime Error | 0 | 0 | 49 | a,b = raw_input().split("\n")
print int(a)*int(b) | File "/tmp/tmpzddm5vjf/tmpml3l4rn6.py", line 2
print int(a)*int(b)
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s497652338 | p02389 | u905964869 | 1455353872 | Python | Python | py | Runtime Error | 0 | 0 | 56 | a,b = raw_input().sprit().split(" ")
print int(a)*int(b) | File "/tmp/tmpwviioo2q/tmpaz5okngp.py", line 2
print int(a)*int(b)
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s728406163 | p02389 | u148101999 | 1456454587 | Python | Python | py | Runtime Error | 0 | 0 | 87 | import sys
argv = sys.argv
x = int(argv[1])
y = int(args[2])
print x*y,
print 2*x+2*y, | File "/tmp/tmpq1jl64h3/tmpql6yzcwq.py", line 6
print x*y,
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s611033424 | p02389 | u148101999 | 1456454741 | Python | Python | py | Runtime Error | 0 | 0 | 85 | import sys
argv = sys.argv
x = int(argv[1])
y = int(argv[2])
print x*y,
print 2*x+2*y | File "/tmp/tmplgw0yoyx/tmp4ty2rjix.py", line 5
print x*y,
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s146553902 | p02389 | u148101999 | 1456454969 | Python | Python | py | Runtime Error | 0 | 0 | 95 | import sys
argv = sys.argv
x = int(argv[1])
y = int(argv[2])
print x*y,
print " "
print 2*x+2*y | File "/tmp/tmpdanreqnq/tmpwvc9j5dt.py", line 5
print x*y,
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s809670947 | p02389 | u148101999 | 1456455073 | Python | Python | py | Runtime Error | 0 | 0 | 96 | import sys
argv = sys.argv
x = int(argv[1])
y = int(argv[2])
print x*y,
print " ",
print 2*x+2*y | File "/tmp/tmplfbm6edx/tmp9_ftwu95.py", line 5
print x*y,
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s430687998 | p02389 | u653239976 | 1456566739 | Python | Python | py | Runtime Error | 0 | 0 | 113 | l = raw_input().split()
a = int(l[0])*int(l[1])
b = int(l[0])*2+int(l[1])*2
print a ,b
l = raw_input().split() | File "/tmp/tmp9y27fkvl/tmpyfnmrpq0.py", line 5
print a ,b
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s015083786 | p02389 | u653239976 | 1456566830 | Python | Python | py | Runtime Error | 0 | 0 | 112 | l = raw_input().split()
a = int(l[0])*int(l[1])
b = int(l[0])*2+int(l[1])*2
print a ,b
l = raw_input().split() | File "/tmp/tmpdmsk6zn0/tmp7h_2_2lo.py", line 4
print a ,b
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s901727387 | p02389 | u975539923 | 1457142608 | Python | Python | py | Runtime Error | 0 | 0 | 71 | a = input()
b = input()
s = a * b
l = 2 * (a+b)
print "%d %d" % (s, l) | File "/tmp/tmp6qagzr24/tmpsj7vye9i.py", line 6
print "%d %d" % (s, l)
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s558535470 | p02389 | u075836834 | 1457260387 | Python | Python3 | py | Runtime Error | 0 | 0 | 44 | a = input()
b = input()
print(int(a)*int(b)) | Traceback (most recent call last):
File "/tmp/tmpzpd41rub/tmpqb342cfe.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s202534312 | p02389 | u075836834 | 1457260443 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a = input()
b = input()
print(int(a)*int(b),2*(int(a)+int(b)) | File "/tmp/tmp0l7u54xo/tmpqr_z9gxz.py", line 3
print(int(a)*int(b),2*(int(a)+int(b))
^
SyntaxError: '(' was never closed
| |
s646736919 | p02389 | u075836834 | 1457260585 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a = input()
b = input()
print(int(a)*int(b),2*(int(a)+int(b))) | Traceback (most recent call last):
File "/tmp/tmp6q8v8sx4/tmpvv2301ym.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s168027481 | p02389 | u075836834 | 1457262263 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | a,b = map(int,input())
print(a*b,2*(a+b)) | Traceback (most recent call last):
File "/tmp/tmpi08gany0/tmp09rdk2t7.py", line 1, in <module>
a,b = map(int,input())
^^^^^^^
EOFError: EOF when reading a line
| |
s408852567 | p02389 | u899670963 | 1457318358 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a = input()
b = input()
print a * b, 2*a + 2*b | File "/tmp/tmp7v2jemw0/tmphkjo0cfu.py", line 3
print a * b, 2*a + 2*b
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s677247657 | p02389 | u899670963 | 1457318450 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a = input()
b = input()
print a * b, 2*a + 2*b | File "/tmp/tmp0dpr_baw/tmpa27f0gh3.py", line 3
print a * b, 2*a + 2*b
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s050126211 | p02389 | u715281953 | 1457321046 | Python | Python | py | Runtime Error | 0 | 0 | 90 | n = raw_input()
a = n.split(" ")
b = int(a[0])
c = int(a[1])
print = b * c
print = (b+c)*2 | Traceback (most recent call last):
File "/tmp/tmpqqh0vl9y/tmp_mq8yf0u.py", line 1, in <module>
n = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s079394937 | p02389 | u715281953 | 1457321098 | Python | Python | py | Runtime Error | 0 | 0 | 90 | n = raw_input()
a = n.split(" ")
b = int(a[0])
c = int(a[1])
print = b * c
print = (b+c)*2 | Traceback (most recent call last):
File "/tmp/tmpwvb16cvr/tmpaeq087zc.py", line 1, in <module>
n = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s417485216 | p02389 | u715281953 | 1457321395 | Python | Python | py | Runtime Error | 0 | 0 | 78 | n = raw_input()
a = n.split(" ")
b = int(a[0])
c = int(a[1])
print b*c (b+c)*2 | File "/tmp/tmpu4m8kjqb/tmplwl_r5gt.py", line 5
print b*c (b+c)*2
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s492590414 | p02389 | u652375714 | 1458485576 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a = raw_input().split()
area=a[0]*a[1]
length=2*(a[0]+a[1])
print area+" "+length | File "/tmp/tmpgmjjgxud/tmpubrte3nx.py", line 4
print area+" "+length
^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s052812725 | p02389 | u652375714 | 1458485824 | Python | Python | py | Runtime Error | 0 | 0 | 77 | a = raw_input().split()
area=a[0]*a[1]
length=2*(a[0]+a[1])
print area,length | File "/tmp/tmp5km0i9r1/tmpf3e6seu6.py", line 4
print area,length
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s935368700 | p02389 | u652375714 | 1458485993 | Python | Python | py | Runtime Error | 0 | 0 | 77 | a = raw_input().split()
area=a[0]*a[1]
length=2*(a[0]+a[1])
print area,length | File "/tmp/tmpt4ygeqhp/tmpw_5koukg.py", line 4
print area,length
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s068639986 | p02389 | u652375714 | 1458486015 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a = raw_input().split()
area=a[0]*a[1]
length=2*(a[0]+a[1])
print area,length | File "/tmp/tmp2mgyfdux/tmpx35y7dll.py", line 4
print area,length
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s003561237 | p02389 | u869301406 | 1458621530 | Python | Python | py | Runtime Error | 0 | 0 | 38 | a=input()
b=input()
print a*b, 2*a+2*b | File "/tmp/tmp5qychcf8/tmpgxtc3_oy.py", line 3
print a*b, 2*a+2*b
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s410908262 | p02389 | u869301406 | 1458621741 | Python | Python | py | Runtime Error | 0 | 0 | 38 | a=input()
b=input()
print a*b, 2*a+2*b | File "/tmp/tmpkub7b94h/tmpx6bu25ck.py", line 3
print a*b, 2*a+2*b
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s645267686 | p02389 | u418434817 | 1458995276 | Python | Python | py | Runtime Error | 0 | 0 | 49 | a=input()
b=input()
c=a*b
d=(a+b)*2
print c+" "+d | File "/tmp/tmph_9u76h3/tmpix8jd2r4.py", line 5
print c+" "+d
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s954292971 | p02389 | u418434817 | 1458995308 | Python | Python | py | Runtime Error | 0 | 0 | 41 | a,b=input()
c=a*b
d=(a+b)*2
print c+" "+d | File "/tmp/tmp_yuo0zi_/tmpnd0kwima.py", line 4
print c+" "+d
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s795484755 | p02389 | u418434817 | 1458995473 | Python | Python | py | Runtime Error | 0 | 0 | 65 | l=raw_input().split()
a=l[0]
b=l[1]
c=a*b
d=(a+b)*2
print c+" "+d | File "/tmp/tmpcx1u08zx/tmp393bprnr.py", line 6
print c+" "+d
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s504301952 | p02389 | u418434817 | 1458995639 | Python | Python | py | Runtime Error | 0 | 0 | 74 | l=map(int,raw_input().split())
a=l[0]
b=l[1]
c=a*b
d=(a+b)*2
print c+" "+d | File "/tmp/tmpe5baf4ra/tmpp5r2a62m.py", line 6
print c+" "+d
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s087663791 | p02389 | u418434817 | 1458995741 | Python | Python | py | Runtime Error | 0 | 0 | 77 | l = map(int, raw_input().split())
a=l[0]
b=l[1]
c=a*b
d=(a+b)*2
print c+" "+d | File "/tmp/tmpi7k1ypkv/tmpli9i3sup.py", line 6
print c+" "+d
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s090505960 | p02389 | u402330988 | 1459677150 | Python | Python | py | Runtime Error | 0 | 0 | 59 | a ,b = map(int(input().split()))
print a*b + ' ' + 2(*(a+b) | File "/tmp/tmpc2g09vlf/tmp6pqso2ek.py", line 2
print a*b + ' ' + 2(*(a+b)
^
SyntaxError: '(' was never closed
| |
s029269291 | p02389 | u013479944 | 1460682703 | Python | Python | py | Runtime Error | 0 | 0 | 29 | n=input()
m=input()
print n*m | File "/tmp/tmpxzv8x_jz/tmpflwyw0no.py", line 3
print n*m
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s318298291 | p02389 | u013479944 | 1460683227 | Python | Python | py | Runtime Error | 0 | 0 | 65 | n=map(int, raw_input().split())
print n[0]*n[1] " " n[0]*2+n[1]*2 | File "/tmp/tmpkhn5l9cn/tmpuzco54xl.py", line 2
print n[0]*n[1] " " n[0]*2+n[1]*2
^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s630059253 | p02389 | u512127035 | 1460986718 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | line = input().split(' ')
a = line[0]
b = line[1]
print(a*b 2*(a+b)) | File "/tmp/tmpse95ylga/tmpji6z9b7b.py", line 5
print(a*b 2*(a+b))
^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s603216192 | p02389 | u512127035 | 1460986767 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | line = input().split(' ')
a = int(line[0])
b = int(line[1])
print(a*b2*(a+b)) | Traceback (most recent call last):
File "/tmp/tmpqchef15j/tmpl_guzomu.py", line 1, in <module>
line = input().split(' ')
^^^^^^^
EOFError: EOF when reading a line
| |
s832936407 | p02389 | u077284614 | 1461232727 | Python | Python3 | py | Runtime Error | 0 | 0 | 42 | a, b=int(map(input()))
print(a*b, a*2+b*2) | Traceback (most recent call last):
File "/tmp/tmp050vxw9c/tmp_9y7shk7.py", line 1, in <module>
a, b=int(map(input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s794582212 | p02389 | u077284614 | 1461233154 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a, b=map(int,input.split())
print(a*b, A*2+b*2) | Traceback (most recent call last):
File "/tmp/tmp9b_8slae/tmpcnddxqhk.py", line 1, in <module>
a, b=map(int,input.split())
^^^^^^^^^^^
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.