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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s680525698 | p02389 | u038005340 | 1452048111 | Python | Python | py | Runtime Error | 0 | 0 | 93 | a = input()
b = input()
ans1 = a * b
ans2 = 2 * ( a + b )
print ans1,
print ' ',
print ans2 | File "/tmp/tmp4tv4kuhx/tmpude5rqws.py", line 7
print ans1,
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s432120400 | p02389 | u393769849 | 1452048112 | Python | Python | py | Runtime Error | 0 | 0 | 60 | a = input() ,
b = input()
print a * b ,
print a * 2 + b * 2 | File "/tmp/tmp1aco7wi8/tmp1h0mta66.py", line 4
print a * b ,
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s289962749 | p02389 | u824204304 | 1452048152 | Python | Python | py | Runtime Error | 0 | 0 | 88 | a = raw_input()
b = raw_input()
a = int(a)
b = int(b)
print a * b
print a + a + b + b | File "/tmp/tmphldxo_1u/tmpsrb9u_55.py", line 5
print a * b
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s788509459 | p02389 | u613805578 | 1452048157 | Python | Python | py | Runtime Error | 0 | 0 | 55 | a, b = map(input(), input())
print a * b, 2 * a + 2 * b | File "/tmp/tmp2fmm84el/tmp6ovmgk4a.py", line 2
print a * b, 2 * a + 2 * b
^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s064632930 | p02389 | u563876281 | 1452048159 | Python | Python | py | Runtime Error | 0 | 0 | 37 | a=nums[0]
b=nums[1]
print a*b 2*(a+b) | File "/tmp/tmpv5sw9jwp/tmp5ulmipla.py", line 3
print a*b 2*(a+b)
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s068201623 | p02389 | u038243492 | 1452048207 | Python | Python | py | Runtime Error | 0 | 0 | 71 | a = raw_input()
b = raw_input()
a = int(a)
b = int(b)
s = a * b
print s | File "/tmp/tmpeeo0cqrt/tmp78sai9b8.py", line 6
print s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s854093566 | p02389 | u038005340 | 1452048211 | Python | Python | py | Runtime Error | 0 | 0 | 93 | a = input()
b = input()
ans1 = a * b
ans2 = 2 * ( a + b )
print ans1,
print ' ',
print ans2 | File "/tmp/tmp9dgqn22l/tmpjfq5te1l.py", line 7
print ans1,
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s065467860 | p02389 | u630265299 | 1452048213 | Python | Python | py | Runtime Error | 0 | 0 | 36 | x = int(a b)
print a * b 2 * (a + b) | File "/tmp/tmpl9ld41qv/tmp49hle80u.py", line 1
x = int(a b)
^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s978101614 | p02389 | u613805578 | 1452048222 | Python | Python | py | Runtime Error | 0 | 0 | 61 | a, b = map(int, raw_input().split)
print a * b, 2 * a + 2 * b | File "/tmp/tmpi83kyxlf/tmp5fdf55vk.py", line 2
print a * b, 2 * a + 2 * b
^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s256463549 | p02389 | u970436839 | 1452048252 | Python | Python | py | Runtime Error | 0 | 0 | 41 | a, b = input(), input()
print a*b 2*a+2*b | File "/tmp/tmp5spr7chz/tmpkggue5ce.py", line 2
print a*b 2*a+2*b
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s413294634 | p02389 | u038005340 | 1452048274 | Python | Python | py | Runtime Error | 0 | 0 | 83 | a = input()
b = input()
ans1 = a * b
ans2 = 2 * ( a + b )
print ans1 ,
print ans2 | File "/tmp/tmp9blst9nu/tmp2l53c58r.py", line 7
print ans1 ,
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s409435863 | p02389 | u038005340 | 1452048299 | Python | Python | py | Runtime Error | 0 | 0 | 75 | a = input()
b = input()
ans1 = a * b
ans2 = 2 * ( a + b )
print ans1 ans2 | File "/tmp/tmpe4texmpc/tmpj1jhxu4v.py", line 7
print ans1 ans2
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s442194025 | p02389 | u970436839 | 1452048318 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a, b = input(), input()
print a*b,
print 2*a+2*b | File "/tmp/tmp7d86a756/tmpu503woai.py", line 2
print a*b,
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s405927774 | p02389 | u038005340 | 1452048351 | Python | Python | py | Runtime Error | 0 | 0 | 64 | def( a , b )
ans1 = a * b
ans2 = 2 * ( a + b )
print ans1 ans2 | File "/tmp/tmppqv7ziid/tmp2dbpkmpf.py", line 1
def( a , b )
^
SyntaxError: invalid syntax
| |
s102881002 | p02389 | u630265299 | 1452048354 | Python | Python | py | Runtime Error | 0 | 0 | 59 | a = input_a()
b = input_b()
print a * b
print 2 * (a + b) | File "/tmp/tmpyyunr_t4/tmph9fipdbu.py", line 4
print a * b
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s572023031 | p02389 | u393769849 | 1452048384 | Python | Python | py | Runtime Error | 0 | 0 | 59 | a,b= input() , input()
print a * b ,
print a * 2 + b * 2 | File "/tmp/tmpjlwgaa2o/tmptsrcvc0k.py", line 4
print a * b ,
^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s445559389 | p02389 | u038243492 | 1452048396 | Python | Python | py | Runtime Error | 0 | 0 | 71 | a = raw_input();b = raw_input()
a = int(a);b = int(b)
s = a * b
print s | File "/tmp/tmpxy0cq7h9/tmp4lhgcwu3.py", line 4
print s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s962776189 | p02389 | u038005340 | 1452048403 | Python | Python | py | Runtime Error | 0 | 0 | 68 | def( a , b )
ans1 = a * b
ans2 = 2 * ( a + b )
print ans1 ' ' ans2 | File "/tmp/tmpqy54u99z/tmpqpbqqoop.py", line 1
def( a , b )
^
SyntaxError: invalid syntax
| |
s529617195 | p02389 | u824204304 | 1452048458 | Python | Python | py | Runtime Error | 0 | 0 | 79 | a = raw_input()
b = raw_input()
a = int(a)
b = int(b)
print a * b a + a + b + b | File "/tmp/tmprk8zc6rz/tmpy8dkxpfm.py", line 5
print a * b a + a + b + b
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s121941730 | p02389 | u177295149 | 1452048524 | Python | Python | py | Runtime Error | 0 | 0 | 35 | def_input(a,b):
print a*b 2*(a+b) | File "/tmp/tmpv1wuvhs2/tmp4lgetpf1.py", line 1
def_input(a,b):
^
SyntaxError: invalid syntax
| |
s786040832 | p02389 | u967035362 | 1452048532 | Python | Python | py | Runtime Error | 0 | 0 | 75 | a = raw_input()
b = raw_input()
a = int(a)
b = int(b)
print a*b
print 2a+2b | File "/tmp/tmpgnaz6gba/tmpqfxi9ao7.py", line 6
print 2a+2b
^
SyntaxError: invalid decimal literal
| |
s434318761 | p02389 | u824204304 | 1452048546 | Python | Python | py | Runtime Error | 0 | 0 | 85 | a = raw_input()
b = raw_input()
a = int(a)
b = int(b)
print a * b
printa + a + b + b | File "/tmp/tmpizmutchj/tmph4s0_m8w.py", line 5
print a * b
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s779742063 | p02389 | u038005340 | 1452048554 | Python | Python | py | Runtime Error | 0 | 0 | 78 | a,b = map( int , int )
ans1 = a * b
ans2 = 2 * ( a + b )
print ans1 ' ' ans2 | File "/tmp/tmpj6u2d5xf/tmp7nalnfci.py", line 6
print ans1 ' ' ans2
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s454952107 | p02389 | u038005340 | 1452048598 | Python | Python | py | Runtime Error | 0 | 0 | 86 | a,b = map( input() , input() )
ans1 = a * b
ans2 = 2 * ( a + b )
print ans1 ' ' ans2 | File "/tmp/tmpyjwx3lx9/tmpfb_ar9iv.py", line 6
print ans1 ' ' ans2
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s880958538 | p02389 | u920118302 | 1452048602 | Python | Python | py | Runtime Error | 0 | 0 | 42 | a, b = raw_input()
print(a * b, 2 * (a+b)) | Traceback (most recent call last):
File "/tmp/tmplaeyre4w/tmpuohj58qs.py", line 1, in <module>
a, b = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s078017347 | p02389 | u038005340 | 1452048603 | Python | Python | py | Runtime Error | 0 | 0 | 86 | a,b = map( input() , input() )
ans1 = a * b
ans2 = 2 * ( a + b )
print ans1 ' ' ans2 | File "/tmp/tmpcf3zmily/tmpcdtgpsp9.py", line 6
print ans1 ' ' ans2
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s047462679 | p02389 | u824204304 | 1452048615 | Python | Python | py | Runtime Error | 0 | 0 | 86 | a = raw_input()
b = raw_input()
a = int(a)
b = int(b)
print a * b,
printa + a + b + b | File "/tmp/tmpk2atfuo9/tmpepb7p239.py", line 5
print a * b,
^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s489972810 | p02389 | u177295149 | 1452048633 | Python | Python | py | Runtime Error | 0 | 0 | 33 | [a,b] = input()
print a*b 2*(a+b) | File "/tmp/tmp8_71ldzk/tmp8ltcl7vo.py", line 2
print a*b 2*(a+b)
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s872534868 | p02389 | u824204304 | 1452048692 | Python | Python | py | Runtime Error | 0 | 0 | 88 | a = raw_input()
b = raw_input()
a = int(a)
b = int(b)
print "a * b",
printa + a + b + b | File "/tmp/tmp8jna531l/tmposidu21n.py", line 5
print "a * b",
^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s629136162 | p02389 | u456885296 | 1452048708 | Python | Python | py | Runtime Error | 0 | 0 | 37 | a=input()
b=input()
print a*b,2*a+2*b | File "/tmp/tmpe7kj9md3/tmp1qtee0qa.py", line 3
print a*b,2*a+2*b
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s166991739 | p02389 | u824204304 | 1452048712 | Python | Python | py | Runtime Error | 0 | 0 | 96 | a = raw_input()
b = raw_input()
a = "int(a)",
b = "int(b)"
print "a * b",
print "a + a + b + b" | File "/tmp/tmpcmw01voe/tmpcc1usfv1.py", line 5
print "a * b",
^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s895399247 | p02389 | u630265299 | 1452048717 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a, b = input(), input()
print a * b, 2 * (a + b) | File "/tmp/tmpcqzoecga/tmpdxire9im.py", line 2
print a * b, 2 * (a + b)
^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s371842685 | p02389 | u824204304 | 1452048722 | Python | Python | py | Runtime Error | 0 | 0 | 95 | a = raw_input()
b = raw_input()
a = "int(a)"
b = "int(b)"
print "a * b",
print "a + a + b + b" | File "/tmp/tmpxp4ylgs7/tmp26jaoov6.py", line 5
print "a * b",
^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s176253615 | p02389 | u630265299 | 1452048781 | Python | Python | py | Runtime Error | 0 | 0 | 40 | a, b = input()
return a * b, 2 * (a + b) | File "/tmp/tmp_06pd5k2/tmpb8b497lj.py", line 2
return a * b, 2 * (a + b)
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s616969163 | p02389 | u038005340 | 1452048782 | Python | Python | py | Runtime Error | 0 | 0 | 90 | a,b = map( input() , input() )
ans1 = a * b
ans2 = 2 * ( a + b )
print ans1 + ' ' + ans2 | File "/tmp/tmp82fgt19a/tmpyw4qae3w.py", line 6
print ans1 + ' ' + ans2
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s928944778 | p02389 | u038243492 | 1452048831 | Python | Python | py | Runtime Error | 0 | 0 | 71 | l = raw_input().split()
s = l[0] * l[1]
y = (l[0] + l[1]) * 2
print s y | File "/tmp/tmp4sduie4a/tmp8ey8tmqi.py", line 4
print s y
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s352055357 | p02389 | u038243492 | 1452048852 | Python | Python | py | Runtime Error | 0 | 0 | 69 | l = raw_input().split()
s = l[0] * l[1]
y = (l[0] + l[1]) * 2
print s | File "/tmp/tmpyvppijfz/tmpe4shz140.py", line 4
print s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s695875570 | p02389 | u038005340 | 1452048884 | Python | Python | py | Runtime Error | 0 | 0 | 92 | a,b = map( input() , input().split() )
ans1 = a * b
ans2 = 2 * ( a + b )
print ans1 , ans2 | File "/tmp/tmpm60fdqbn/tmptpfd85n7.py", line 6
print ans1 , ans2
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s562466111 | p02389 | u967035362 | 1452048890 | Python | Python | py | Runtime Error | 0 | 0 | 75 | a = raw_input()
b = raw_input()
a = input(a)
b = input(b)
print a*b 2*a+2*b | File "/tmp/tmp3z31zhu1/tmplyd_7t5_.py", line 5
print a*b 2*a+2*b
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s003599680 | p02389 | u619765879 | 1452048903 | Python | Python | py | Runtime Error | 0 | 0 | 33 | a = input()
b = input()
print a*b | File "/tmp/tmpiwr7_svv/tmpmdwgofmb.py", line 3
print a*b
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s029983526 | p02389 | u824204304 | 1452048907 | Python | Python | py | Runtime Error | 0 | 0 | 96 | a = raw_input()
b = raw_input()
a = "int(a)",
b = "int(b)"
print "a * b",
print "a + a + b + b" | File "/tmp/tmp3_zhstqm/tmpgwr468v3.py", line 5
print "a * b",
^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s797534013 | p02389 | u824204304 | 1452048942 | Python | Python | py | Runtime Error | 0 | 0 | 95 | a = raw_input()
a = "int(a)"
b = raw_input()
b = "int(b)"
print "a * b",
print "a + a + b + b" | File "/tmp/tmpyi3wcqyc/tmp6bzevwdb.py", line 5
print "a * b",
^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s506386390 | p02389 | u630265299 | 1452048950 | Python | Python | py | Runtime Error | 0 | 0 | 61 | a, b = map(int, raw_input. split())
return a * b, 2 * (a + b) | File "/tmp/tmphdbhp5pi/tmpcl0i_qii.py", line 2
return a * b, 2 * (a + b)
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s615895537 | p02389 | u047737909 | 1452048977 | Python | Python | py | Runtime Error | 0 | 0 | 65 | a = int(input())
b = int(input())
print("%d %d"%(a*b)%(2*a+2*b)) | Traceback (most recent call last):
File "/tmp/tmpk7wp2pil/tmpe92fg47g.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s713756546 | p02389 | u967035362 | 1452048985 | Python | Python | py | Runtime Error | 0 | 0 | 53 | a,b = raw_input()
a,b = input(a,b)
print a*b, 2*a+2*b | File "/tmp/tmprevx68c2/tmp6o4u8o61.py", line 3
print a*b, 2*a+2*b
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s073373688 | p02389 | u630265299 | 1452048992 | Python | Python | py | Runtime Error | 0 | 0 | 63 | a, b = map(int, raw_input(). split())
return a * b, 2 * (a + b) | File "/tmp/tmp0na46r9h/tmpg9fb_88_.py", line 2
return a * b, 2 * (a + b)
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s325056677 | p02389 | u334643297 | 1452049016 | Python | Python | py | Runtime Error | 0 | 0 | 54 | a=input()
b=input()
print a*b
print " "
print (a+b)*2 | File "/tmp/tmpgj3i4z48/tmp7m9uzt7o.py", line 3
print a*b
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s488195007 | p02389 | u630265299 | 1452049036 | Python | Python | py | Runtime Error | 0 | 0 | 62 | a, b = map(int, raw_input(). split())
return a * b 2 * (a + b) | File "/tmp/tmp_y_bcgbv/tmpz7x7opgj.py", line 2
return a * b 2 * (a + b)
^
SyntaxError: invalid syntax
| |
s513783669 | p02389 | u803327846 | 1452049059 | Python | Python | py | Runtime Error | 0 | 0 | 41 | a = input()
b = input()
s = a * b
print s | File "/tmp/tmpt_za5x1b/tmpmtvp__xg.py", line 4
print s
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s986621533 | p02389 | u967035362 | 1452049114 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | a,b = map( int , raw_input().split() )
print a*b , 2*(a+b) | File "/tmp/tmpcg4scium/tmprag_klv_.py", line 2
print a*b , 2*(a+b)
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s063927187 | p02389 | u630265299 | 1452049115 | Python | Python | py | Runtime Error | 0 | 0 | 63 | a, b = map(int, raw_input(). split())
return a * b, 2 * (a + b) | File "/tmp/tmp8qfp9b85/tmpfg32ngk5.py", line 2
return a * b, 2 * (a + b)
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s973567728 | p02389 | u920118302 | 1452049115 | Python | Python | py | Runtime Error | 0 | 0 | 49 | a, b = raw_input, raw_input
print(a * b, 2*(a+b)) | Traceback (most recent call last):
File "/tmp/tmptrq358vy/tmp5e71lu1q.py", line 1, in <module>
a, b = raw_input, raw_input
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s728149351 | p02389 | u663227983 | 1452049122 | Python | Python | py | Runtime Error | 0 | 0 | 49 | a = input()
b = input()
print a*b + " " + 2*(a+b) | File "/tmp/tmpfqxiac3d/tmp_86d0m05.py", line 3
print a*b + " " + 2*(a+b)
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s351148048 | p02389 | u920118302 | 1452049174 | Python | Python | py | Runtime Error | 0 | 0 | 63 | a, b = int(raw_input()), int(raw_input())
print(a * b, 2*(a+b)) | Traceback (most recent call last):
File "/tmp/tmp_a9ehp07/tmpfc4stfsm.py", line 1, in <module>
a, b = int(raw_input()), int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s038333968 | p02389 | u920118302 | 1452049183 | Python | Python | py | Runtime Error | 0 | 0 | 63 | a, b = int(raw_input()), int(raw_input())
print(a * b, 2*(a+b)) | Traceback (most recent call last):
File "/tmp/tmpx2gcjvll/tmpz4pmnmws.py", line 1, in <module>
a, b = int(raw_input()), int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s842294630 | p02389 | u619765879 | 1452049188 | Python | Python | py | Runtime Error | 0 | 0 | 55 | a, b = map(str, raw_input().split())
print a*b (a+b)*2 | File "/tmp/tmpum6itqqd/tmp12_lm0mw.py", line 3
print a*b (a+b)*2
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s956561667 | p02389 | u047737909 | 1452049192 | Python | Python | py | Runtime Error | 0 | 0 | 67 | a = int(input())
b = int(input())
print("%d %d"%((a*b),(2*a+2*b))) | Traceback (most recent call last):
File "/tmp/tmpuudvzawb/tmpp1vo_4vz.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s311627022 | p02389 | u619765879 | 1452049209 | Python | Python | py | Runtime Error | 0 | 0 | 55 | a, b = map(str, raw_input().split())
print a*b (a+b)*2 | File "/tmp/tmpj2r2gssn/tmpdno9wgwy.py", line 3
print a*b (a+b)*2
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s250871613 | p02389 | u393769849 | 1452049212 | Python | Python | py | Runtime Error | 0 | 0 | 72 | a, b = map(int, raw_input().split():)
print a * b ,
print a * 2 + b * 2 | File "/tmp/tmpi44bw_rc/tmpizn116n9.py", line 1
a, b = map(int, raw_input().split():)
^
SyntaxError: invalid syntax
| |
s295399179 | p02389 | u920118302 | 1452049225 | Python | Python | py | Runtime Error | 0 | 0 | 69 | a, b = int(input()), int(input())
S = a * b
R = 2 * (a+b)
print(S, R) | Traceback (most recent call last):
File "/tmp/tmp88xxdfm6/tmpcpy28fes.py", line 1, in <module>
a, b = int(input()), int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s825483227 | p02389 | u038243492 | 1452049225 | Python | Python | py | Runtime Error | 0 | 0 | 81 | l = raw_input().split()
s = l[0] * l[1]
y = (l[0] + l[1]) * 2
print s,
print " "y | File "/tmp/tmpe54nzbmb/tmpjyfm2s5n.py", line 4
print s,
^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s379186328 | p02389 | u393769849 | 1452049232 | Python | Python | py | Runtime Error | 0 | 0 | 66 | a, b = map(int, raw_input().split():)
print a * b , a * 2 + b * 2 | File "/tmp/tmpv4yuj5iv/tmpu2cvds9n.py", line 1
a, b = map(int, raw_input().split():)
^
SyntaxError: invalid syntax
| |
s352490388 | p02389 | u920118302 | 1452049243 | Python | Python | py | Runtime Error | 0 | 0 | 64 | a, b = int(input(), input())
S = a * b
R = 2 * (a+b)
print(S, R) | Traceback (most recent call last):
File "/tmp/tmpmh03ztvo/tmpdek_1gss.py", line 1, in <module>
a, b = int(input(), input())
^^^^^^^
EOFError: EOF when reading a line
| |
s590214369 | p02389 | u920118302 | 1452049250 | Python | Python | py | Runtime Error | 0 | 0 | 59 | a, b = input(), input()
S = a * b
R = 2 * (a+b)
print(S, R) | Traceback (most recent call last):
File "/tmp/tmp0gck4zw4/tmphlparbi_.py", line 1, in <module>
a, b = input(), input()
^^^^^^^
EOFError: EOF when reading a line
| |
s376115854 | p02389 | u047737909 | 1452049289 | Python | Python | py | Runtime Error | 0 | 0 | 75 | a = int(input())
b = int(input())
print("%d"%(a*b))
print(" %d"%(2*a+2*b)) | Traceback (most recent call last):
File "/tmp/tmp0phhpn2_/tmp_f3u1t_i.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s918319435 | p02389 | u619765879 | 1452049391 | Python | Python | py | Runtime Error | 0 | 0 | 56 | a, b = map(str, raw_input().split())
print a*b, (a+b)*2 | File "/tmp/tmp0wa4duki/tmpvp8z9clg.py", line 3
print a*b, (a+b)*2
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s998636145 | p02389 | u047737909 | 1452049395 | Python | Python | py | Runtime Error | 0 | 0 | 74 | a = int(input())
b = int(input())
print("%d"%(a*b))
print(" %d"%(2*a+2*b)) | Traceback (most recent call last):
File "/tmp/tmpas7muq6e/tmpubepvy0v.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s049670196 | p02389 | u663227983 | 1452049396 | Python | Python | py | Runtime Error | 0 | 0 | 59 | a = input()
b = input()
print str(a*b) + " " + str(2*(a+b)) | File "/tmp/tmpc7bwwbtv/tmpdgez2hpt.py", line 3
print str(a*b) + " " + str(2*(a+b))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s995778473 | p02389 | u619765879 | 1452049454 | Python | Python | py | Runtime Error | 0 | 0 | 55 | a, b = map(int, raw_input().split())
print a*b (a+b)*2 | File "/tmp/tmpdp62moyc/tmpl4ntgdyg.py", line 3
print a*b (a+b)*2
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s207858382 | p02389 | u119456964 | 1452051395 | Python | Python | py | Runtime Error | 0 | 0 | 70 | x = int(raw_input()) ,
y = int(raw_input())
print x*y ,
print 2*x+2*y | File "/tmp/tmpt_sxxvqu/tmpqoy62dg0.py", line 4
print x*y ,
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s691281390 | p02389 | u119456964 | 1452051416 | Python | Python | py | Runtime Error | 0 | 0 | 68 | x = int(raw_input())
y = int(raw_input())
print x*y ,
print 2*x+2*y | File "/tmp/tmpsi_4rli0/tmpfkwpj9e1.py", line 4
print x*y ,
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s633686070 | p02389 | u920118302 | 1452139676 | Python | Python | py | Runtime Error | 0 | 0 | 62 | a = int(raw_input())
b = int(raw_input())
print(a*b, 2*(a+b)) | Traceback (most recent call last):
File "/tmp/tmpkjhbf7ls/tmpaapxig4_.py", line 1, in <module>
a = int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s518949476 | p02389 | u920118302 | 1452139686 | Python | Python | py | Runtime Error | 0 | 0 | 62 | a = int(raw_input())
b = int(raw_input())
print(a*b, 2*(a+b)) | Traceback (most recent call last):
File "/tmp/tmpwtt20ih3/tmp9v6zalgw.py", line 1, in <module>
a = int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s159694910 | p02389 | u920118302 | 1452139708 | Python | Python | py | Runtime Error | 0 | 0 | 62 | a = int(raw_input())
b = int(raw_input())
print(a*b, 2*(a+b)) | Traceback (most recent call last):
File "/tmp/tmp2fn_xhkh/tmp57qutnvn.py", line 1, in <module>
a = int(raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s710702195 | p02389 | u885467869 | 1452227096 | Python | Python | py | Runtime Error | 0 | 0 | 75 | a = input()
b = input()
s = a * b
l = 2 * (a + b)
print '%d %d' % (s, l) | File "/tmp/tmp1v6eaflm/tmp0pplgd68.py", line 7
print '%d %d' % (s, l)
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s083821580 | p02389 | u885467869 | 1452310941 | Python | Python | py | Runtime Error | 0 | 0 | 74 | a = input()
b = input()
s = a * b
l = 2 * (a + b)
print "%d %d" % (s, l) | File "/tmp/tmpesz3i8ql/tmpul3yj1z5.py", line 7
print "%d %d" % (s, l)
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s255820942 | p02389 | u885467869 | 1452311652 | Python | Python | py | Runtime Error | 0 | 0 | 204 | #??????????????? : ?¨??????\??????????????????????????????, http://qiita.com/clarinet758/items/53e31ec10b873975438b
a, b = map(int, raw_input().split())
s = a * b
l = 2 * (a + b)
print "%d %d" % (s ,l) | File "/tmp/tmpfiw5r3gh/tmpytihy1ql.py", line 7
print "%d %d" % (s ,l)
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s970336364 | p02389 | u885467869 | 1452311802 | Python | Python | py | Runtime Error | 0 | 0 | 204 | #??????????????? : ?¨??????\??????????????????????????????, http://qiita.com/clarinet758/items/53e31ec10b873975438b
a, b = map(int, raw_input().split())
s = a * b
l = 2 * (a + b)
print "%d %d" % (s ,l) | File "/tmp/tmpxjg26e6w/tmpfyur8tix.py", line 7
print "%d %d" % (s ,l)
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s562465842 | p02389 | u885467869 | 1452311914 | Python | Python | py | Runtime Error | 0 | 0 | 204 | #??????????????? : ?¨??????\??????????????????????????????, http://qiita.com/clarinet758/items/53e31ec10b873975438b
a, b = map(int, raw_input().split())
s = a * b
l = 2 * (a + b)
print "%d %d" % (s ,l) | File "/tmp/tmpz9py3wp2/tmput6zlglu.py", line 7
print "%d %d" % (s ,l)
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s297926437 | p02389 | u885467869 | 1452311992 | Python | Python | py | Runtime Error | 0 | 0 | 205 | #??????????????? : ?¨??????\??????????????????????????????, http://qiita.com/clarinet758/items/53e31ec10b873975438b
a, b = map(int, raw_input().split())
s = a * b
l = 2 * (a + b)
print "%d %d" % (s ,l) | File "/tmp/tmptd8hv1h2/tmpw86bdqq4.py", line 7
print "%d %d" % (s ,l)
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s475927705 | p02389 | u885467869 | 1452312406 | Python | Python | py | Runtime Error | 0 | 0 | 205 | #??????????????? : ?¨??????\??????????????????????????????, http://qiita.com/clarinet758/items/53e31ec10b873975438b
a, b = map(int, raw_input().split())
s = a * b
l = 2 * (a + b)
print "%d, %d" % (s ,l) | File "/tmp/tmpryqhnok5/tmp231j6jbp.py", line 7
print "%d, %d" % (s ,l)
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s316175070 | p02389 | u885467869 | 1452312576 | Python | Python | py | Runtime Error | 0 | 0 | 233 | #??????????????? : ?¨??????\??????????????????????????????, http://qiita.com/clarinet758/items/53e31ec10b873975438b
#print "%d %d" % (s ,l) ???RanTimeError
a, b = map(int, raw_input().split())
s = a * b
l = 2 * (a + b)
print s, l | File "/tmp/tmpfriarr9k/tmp93h9t1gr.py", line 9
print s, l
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s622900935 | p02389 | u834416077 | 1452332239 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a = raw_input()
b = raw_input()
print a*b 2(a+b) | File "/tmp/tmpn2g0io4z/tmpcxqwpxi_.py", line 3
print a*b 2(a+b)
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s455823044 | p02389 | u834416077 | 1452332295 | Python | Python | py | Runtime Error | 0 | 0 | 54 | a = raw_input()
b = raw_input()
print a*b
print 2(a+b) | File "/tmp/tmp0s06tsje/tmpop4ea35x.py", line 3
print a*b
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s908900768 | p02389 | u834416077 | 1452332512 | Python | Python | py | Runtime Error | 0 | 0 | 80 | a = raw_input()
b = raw_input()
print int(a) * int(b)
print 2*(int(a) + int(b)) | File "/tmp/tmpcwehgy3t/tmpf65e6zmg.py", line 3
print int(a) * int(b)
^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s375965441 | p02389 | u069446126 | 1452334759 | Python | Python | py | Runtime Error | 0 | 0 | 65 | cond = raw_input.split()
a = cond[0]
b = cond[1]
print a*2 + b*2 | File "/tmp/tmpd3zd8fzj/tmphps_jfk2.py", line 5
print a*2 + b*2
^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s435476612 | p02389 | u069446126 | 1452334940 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | cond = raw_input().split()
a = cond[0]
b = cond[1]
print "(a*b) (a*2 + b*2)" | File "/tmp/tmppswzbh8h/tmpm9zz03lz.py", line 5
print "(a*b) (a*2 + b*2)"
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s838041896 | p02389 | u069446126 | 1452335657 | Python | Python | py | Runtime Error | 0 | 0 | 82 | cond = map(raw_input().split())
a = cond[0]
b = cond[1]
print "(a*b) (a*2 + b*2)" | File "/tmp/tmpkpegb_nf/tmpocb3xyn7.py", line 5
print "(a*b) (a*2 + b*2)"
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s352990657 | p02389 | u069446126 | 1452340860 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | cond = map(raw_input().split())
a = cond[0]
b = cond[1]
print "(a*b) (a*2 + b*2)" | File "/tmp/tmpxt1gzeo2/tmpfre5f66g.py", line 5
print "(a*b) (a*2 + b*2)"
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s952222263 | p02389 | u069446126 | 1452341404 | Python | Python | py | Runtime Error | 0 | 0 | 85 | cond = map(int, raw_input().split())
a = cond[0]
b = cond[1]
print (a*b) (a*2 + b*2) | Traceback (most recent call last):
File "/tmp/tmp7_9jdoi8/tmppl4o7y97.py", line 1, in <module>
cond = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s272217771 | p02389 | u069446126 | 1452341478 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | cond = map(int, raw_input().split())
a = cond[0]
b = cond[1]
print "(a*b) (a*2 + b*2)" | File "/tmp/tmp718ouhdr/tmpd5ehgqs5.py", line 5
print "(a*b) (a*2 + b*2)"
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s204760548 | p02389 | u724923896 | 1452434904 | Python | Python | py | Runtime Error | 0 | 0 | 34 | a = input(); b = input()
print a*b | File "/tmp/tmplki0vrja/tmppewldgeb.py", line 2
print a*b
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s759413538 | p02389 | u724923896 | 1452434964 | Python | Python | py | Runtime Error | 0 | 0 | 46 | a = input(),
b = input()
print a*b, 2*a + 2*b | File "/tmp/tmpyh4bq0gb/tmp4y23lqx0.py", line 4
print a*b, 2*a + 2*b
^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s234917436 | p02389 | u724923896 | 1452435375 | Python | Python | py | Runtime Error | 0 | 0 | 18 | print a*b, a+a+b+b | File "/tmp/tmp6ktfurt6/tmpon7cbup4.py", line 1
print a*b, a+a+b+b
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s434869361 | p02389 | u724923896 | 1452435906 | Python | Python | py | Runtime Error | 0 | 0 | 25 | print a*b,
print a+a+b+b | File "/tmp/tmpcjfycw2z/tmpxzaina5c.py", line 1
print a*b,
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s374387295 | p02389 | u047737909 | 1452484796 | Python | Python | py | Runtime Error | 0 | 0 | 55 | a=int(input())
b=int(input())
c=a*b
d=2*a+2*b
print"c d | File "/tmp/tmpt2xyk0wz/tmpapikn7bv.py", line 5
print"c d
^
SyntaxError: unterminated string literal (detected at line 5)
| |
s772417686 | p02389 | u047737909 | 1452486033 | Python | Python | py | Runtime Error | 0 | 0 | 74 | n = int(raw_input())
a = n[0]*n[2]
b = n[0]*2 + n[2]*2
print'%d %d'%(a, b) | File "/tmp/tmpkrzt7l1r/tmp3gu97hce.py", line 4
print'%d %d'%(a, b)
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s624382808 | p02389 | u047737909 | 1452486071 | Python | Python | py | Runtime Error | 0 | 0 | 74 | n = int(raw_input())
a = n[0]*n[2]
b = n[0]*2 + n[2]*2
print'%d %d'%(a, b) | File "/tmp/tmpytjl_kgg/tmphd2wb5xu.py", line 4
print'%d %d'%(a, b)
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s045860490 | p02389 | u047737909 | 1452486561 | Python | Python | py | Runtime Error | 0 | 0 | 54 | a,b=map('input()','input())
c=a*b
d=2*a+2*b
print'c d' | File "/tmp/tmp_8iauhg8/tmpz1jfoofq.py", line 1
a,b=map('input()','input())
^
SyntaxError: unterminated string literal (detected at line 1)
| |
s353481125 | p02389 | u047737909 | 1452486740 | Python | Python | py | Runtime Error | 0 | 0 | 62 | a,b=map('raw_input()','raw_input())
c=a*b
d=2*a+2*b
print'c d' | File "/tmp/tmplrpiwod0/tmpvc7vivwk.py", line 1
a,b=map('raw_input()','raw_input())
^
SyntaxError: unterminated string literal (detected at line 1)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.