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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s078003296 | p02389 | u967890409 | 1559005769 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | import sys
data=int(input())
data2=int(input())
print((data*data2), 2*(data+data2))
| Traceback (most recent call last):
File "/tmp/tmpwduh6qdr/tmph7nk9u6b.py", line 3, in <module>
data=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s525985565 | p02389 | u128955835 | 1559048998 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | a, b = map(int,input().split)
area = a * b
perimeter = (a + b) * 2
ptint(str(area) + ' ' + str(perimeter))
| Traceback (most recent call last):
File "/tmp/tmp09307bvd/tmpctnc81fv.py", line 1, in <module>
a, b = map(int,input().split)
^^^^^^^
EOFError: EOF when reading a line
| |
s085539028 | p02389 | u128955835 | 1559049023 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | a, b = map(int,input().split())
area = a * b
perimeter = (a + b) * 2
ptint(str(area) + ' ' + str(perimeter))
| Traceback (most recent call last):
File "/tmp/tmpd2xrtah5/tmp4imjfya2.py", line 1, in <module>
a, b = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s890232658 | p02389 | u535719732 | 1559185850 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a = int(input());
b = int(input());
print(a + " " + b);
| Traceback (most recent call last):
File "/tmp/tmpdummjcb9/tmpetebkyht.py", line 1, in <module>
a = int(input());
^^^^^^^
EOFError: EOF when reading a line
| |
s009604578 | p02389 | u535719732 | 1559185869 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a = int(input())
b = int(input())
print(a + " " + b)
| Traceback (most recent call last):
File "/tmp/tmpr5t37h63/tmpxpoiyd00.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s289679149 | p02389 | u535719732 | 1559185935 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | num = list(map(int,input().split()))
print(num[0] + " " + num[1])
| Traceback (most recent call last):
File "/tmp/tmpiyz7yn3c/tmp3gnv79ri.py", line 1, in <module>
num = list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s073317001 | p02389 | u150815241 | 1559207805 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a = int(input())
b = int(input())
print(2a+2b,' ',ab)
| File "/tmp/tmpe5xr8_s2/tmpofl_dil7.py", line 3
print(2a+2b,' ',ab)
^
SyntaxError: invalid decimal literal
| |
s023135447 | p02389 | u150815241 | 1559207907 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a = int(input())
b = int(input())
print(ab,' ',a+b+a+b)
| Traceback (most recent call last):
File "/tmp/tmp1ys4qt0w/tmp5ctz1v2d.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s091760741 | p02389 | u150815241 | 1559207931 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a = int(input())
b = int(input())
print(2a+2b,ab)
| File "/tmp/tmp7rm72s3o/tmpdyotcqni.py", line 3
print(2a+2b,ab)
^
SyntaxError: invalid decimal literal
| |
s526396573 | p02389 | u150815241 | 1559208069 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | a,b = int(input())
print(2a+2b,' ',ab)
| File "/tmp/tmpeblznx74/tmpunbcgq9t.py", line 2
print(2a+2b,' ',ab)
^
SyntaxError: invalid decimal literal
| |
s822296261 | p02389 | u464080148 | 1559337168 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a=int(input())
b=int(input())
print(a*b)
print(2*a+2*b)
| Traceback (most recent call last):
File "/tmp/tmpqwrrbdz4/tmp28e4nsmw.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s641266321 | p02389 | u378782793 | 1404036771 | Python | Python | py | Runtime Error | 0 | 0 | 49 | a = raw_input()
b = raw_input()
print a*b, 2a+2b | File "/tmp/tmpty1kwra9/tmpxe615lvq.py", line 3
print a*b, 2a+2b
^
SyntaxError: invalid decimal literal
| |
s754569205 | p02389 | u378782793 | 1404036890 | Python | Python | py | Runtime Error | 0 | 0 | 61 | a = int(raw_input())
b = int(raw_input())
print a*b, 2*a+2*b | File "/tmp/tmpvtj5pvnp/tmpowfu41rv.py", line 3
print a*b, 2*a+2*b
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s978794719 | p02389 | u378782793 | 1404036914 | Python | Python | py | Runtime Error | 0 | 0 | 65 | a = int(raw_input())
b = int(raw_input())
print a*b, (2*a)+(2*b) | File "/tmp/tmpjbm7c6bm/tmplz1fqzpn.py", line 3
print a*b, (2*a)+(2*b)
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s228607984 | p02389 | u378782793 | 1404036979 | Python | Python | py | Runtime Error | 0 | 0 | 67 | a, b = (int(raw_input()), int(raw_input()))
print a*b, (2*a)+(2*b) | File "/tmp/tmpx61x9hl3/tmpohasr1pi.py", line 2
print a*b, (2*a)+(2*b)
^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s142221847 | p02389 | u378782793 | 1404037007 | Python | Python | py | Runtime Error | 0 | 0 | 66 | a, b = (int(raw_input()), int(raw_input()))
print a*b, (2*a)+(2*b) | File "/tmp/tmpp_ah6th7/tmpnx4936o0.py", line 2
print a*b, (2*a)+(2*b)
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s540931910 | p02389 | u451187291 | 1404562651 | Python | Python | py | Runtime Error | 0 | 0 | 33 | a = input()
b = input()
print a*b | File "/tmp/tmpdx_y6g85/tmp06csk51v.py", line 3
print a*b
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s411588512 | p02389 | u296492699 | 1404722225 | Python | Python | py | Runtime Error | 0 | 0 | 79 | tmp=input()
a=int(tmp.split(' ')[0])
b=int(tmp.split(' ')[1])
print a*b,2*(a+b) | File "/tmp/tmpra51kg2o/tmpfkcr_oga.py", line 4
print a*b,2*(a+b)
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s006856224 | p02389 | u296492699 | 1404722371 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a,b=map(int, input().split())
print a*b, 2*(a+b) | File "/tmp/tmpaxkm09ky/tmpbklz9q4n.py", line 2
print a*b, 2*(a+b)
^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s034530506 | p02389 | u579833671 | 1406961845 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a = int(input())
b = int(input())
print("%d %d" % (a * b, 2 * (a + b))) | Traceback (most recent call last):
File "/tmp/tmp6kysyr87/tmpiaxs8da4.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s510010578 | p02389 | u579833671 | 1406962160 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | n = raw_input()
print("%d %d" % (int(n[0]) * int(n[2]), 2 * (int(n[0]) + int(n[2])) )) | Traceback (most recent call last):
File "/tmp/tmprilot0qu/tmp1pr3uba1.py", line 1, in <module>
n = raw_input()
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s027159793 | p02389 | u579833671 | 1406962370 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | (a, b) = map(int, raw_input().split())
print("%d %d" % (a * b, 2 * (a + b))) | Traceback (most recent call last):
File "/tmp/tmp3hajsfku/tmp7fkwc_cs.py", line 1, in <module>
(a, b) = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s204571865 | p02389 | u579833671 | 1406962433 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | (a, b) = map(int, raw_input().split())
print str(a * b) + " " + str(2 * (a + b)) | File "/tmp/tmpyctnzd_z/tmp7pla3tee.py", line 2
print str(a * b) + " " + str(2 * (a + b))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s493985771 | p02389 | u579833671 | 1406962524 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a, b = map(int, raw_input().split())
print str(a * b) + " " + str(2 * (a + b)) | File "/tmp/tmp02n60six/tmpqr_289h1.py", line 2
print str(a * b) + " " + str(2 * (a + b))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s447609742 | p02389 | u579833671 | 1406962600 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a, b = map(int, raw_input().split())
print((a * b), 2 * (a + b)) | Traceback (most recent call last):
File "/tmp/tmpb046ddtj/tmpwye53_25.py", line 1, in <module>
a, b = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s982369323 | p02389 | u579833671 | 1406963274 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a, b = map(int, raw_input().split())
print((a * b), 2 * (a + b)) | Traceback (most recent call last):
File "/tmp/tmpn0vvox4c/tmpocoqeuja.py", line 1, in <module>
a, b = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s590519736 | p02389 | u955279063 | 1408933686 | Python | Python | py | Runtime Error | 0 | 0 | 62 | a, b = map(int, raw_input().split())
print a*b + " " + (a+b)*2 | File "/tmp/tmp_z_kgh7j/tmpv7p5rwg4.py", line 2
print a*b + " " + (a+b)*2
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s989782368 | p02389 | u955279063 | 1408933866 | Python | Python | py | Runtime Error | 0 | 0 | 86 | list = map(int, raw_input().split())
a = list[0]
b = list[1]
print a*b + " " + (a+b)*2 | File "/tmp/tmpv68mq10t/tmp3sgnw0md.py", line 4
print a*b + " " + (a+b)*2
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s700590653 | p02389 | u018580670 | 1409209080 | Python | Python | py | Runtime Error | 0 | 0 | 43 | a=input()
b=input()
print a*b
print 2*a+2*b | File "/tmp/tmpzu6c87fp/tmppzcj3o__.py", line 3
print a*b
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s162747771 | p02389 | u018580670 | 1409209237 | Python | Python | py | Runtime Error | 0 | 0 | 43 | a,b=input(),input()
print a*b
print 2*a+2*b | File "/tmp/tmpcjeerq_h/tmpyync6edb.py", line 2
print a*b
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s835751138 | p02389 | u018580670 | 1409209689 | Python | Python | py | Runtime Error | 0 | 0 | 51 | a=list(input())
print a[0]*a[1]
print 2*a[0]+2*a[1] | File "/tmp/tmpxhe0g0id/tmpt_twjsu7.py", line 2
print a[0]*a[1]
^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s788986458 | p02389 | u018580670 | 1409210263 | Python | Python | py | Runtime Error | 0 | 0 | 63 | a = map(int, raw_input().split())
print a[0]*a[1] 2*a[0]+2*a[1] | File "/tmp/tmprmw79v92/tmpwr_joxtr.py", line 2
print a[0]*a[1] 2*a[0]+2*a[1]
^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s116786187 | p02389 | u018580670 | 1409210272 | Python | Python | py | Runtime Error | 0 | 0 | 66 | a = map(int, raw_input().split())
print a[0]*a[1] 2*a[0]+2*a[1] | File "/tmp/tmpkoef7xbd/tmplt5to478.py", line 2
print a[0]*a[1] 2*a[0]+2*a[1]
^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s321679643 | p02389 | u018580670 | 1409210312 | Python | Python | py | Runtime Error | 0 | 0 | 64 | a = map(int, raw_input().split())
print ,a[0]*a[1],2*a[0]+2*a[1] | Traceback (most recent call last):
File "/tmp/tmp017pzogq/tmpt3g7hl31.py", line 1, in <module>
a = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s823408390 | p02389 | u792834675 | 1415777945 | Python | Python | py | Runtime Error | 0 | 0 | 51 | x=raw_input().split()
print x[0]*x[1],(x[0]+x[1])*2 | File "/tmp/tmpxrc33z5g/tmptts443p9.py", line 2
print x[0]*x[1],(x[0]+x[1])*2
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s084373159 | p02389 | u017764209 | 1416397941 | Python | Python | py | Runtime Error | 0 | 0 | 79 | x = raw_input()
a = int(x[0:1])
b = int(x[2:3])
print a*b + " " + ((a*2)+(b*2)) | File "/tmp/tmph94f92b8/tmp7apm7s8a.py", line 4
print a*b + " " + ((a*2)+(b*2))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s240471850 | p02389 | u017764209 | 1416398293 | Python | Python | py | Runtime Error | 0 | 0 | 92 | x = raw_input()
a = int(x[0:1])
b = int(x[2:3])
aa = a*2 + b*2
bb = a*b
print bb + " " + aa | File "/tmp/tmpo0toyw_i/tmp1w0nbfsx.py", line 7
print bb + " " + aa
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s614706537 | p02389 | u017764209 | 1416399168 | Python | Python | py | Runtime Error | 0 | 0 | 91 | x = raw_input()
a = int(x[0:1])
b = int(x[2:3])
aa = a*2 + b*2
bb = a*b
print bb + " " + aa | File "/tmp/tmp4jfeqiya/tmph39fhawc.py", line 6
print bb + " " + aa
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s144507201 | p02389 | u017764209 | 1416399393 | Python | Python | py | Runtime Error | 10 | 4196 | 101 | x = raw_input()
a = int(x[0:1])
b = int(x[2:3])
aa = a*2 + b*2
bb = a*b
print str(bb) + " " + str(aa) | File "/tmp/tmpz8e_f5yo/tmps622ciun.py", line 6
print str(bb) + " " + str(aa)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s267193952 | p02389 | u181540499 | 1417100326 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a, b = [int(x) for x in input.split()]
print(a * b, 2 * (a + b)) | Traceback (most recent call last):
File "/tmp/tmpoyl8zf0x/tmpokhq7qfn.py", line 1, in <module>
a, b = [int(x) for x in input.split()]
^^^^^^^^^^^
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
| |
s480885311 | p02389 | u580607517 | 1417358357 | Python | Python | py | Runtime Error | 0 | 0 | 122 | if __name__ == '__main__':
input_a = input()
input_b = input()
a = 2*input_a+2*input_b
b = input_a*input_b
print b, a | File "/tmp/tmpd6fhunwg/tmpta8thnv1.py", line 6
print b, a
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s752030604 | p02389 | u580607517 | 1417358409 | Python | Python | py | Runtime Error | 0 | 0 | 126 | if __name__ == '__main__':
input_a = input()
input_b = input()
a = 2*input_a+2*input_b
b = input_a*input_b
print b," ", a | File "/tmp/tmpww_rrsoo/tmp31wi4vig.py", line 6
print b," ", a
^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s496904148 | p02389 | u580607517 | 1417358497 | Python | Python | py | Runtime Error | 0 | 0 | 126 | if __name__ == '__main__':
input_a = input()
input_b = input()
a = 2*input_a+2*input_b
b = input_a*input_b
print b," ", a | File "/tmp/tmpxvz3kxq4/tmpzdy7wrm3.py", line 6
print b," ", a
^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s774391765 | p02389 | u580607517 | 1417358635 | Python | Python | py | Runtime Error | 0 | 0 | 113 | if __name__ == '__main__':
input_a = input()
input_b = input()
print input_a*input_b," ",2*input_a+2*input_b | File "/tmp/tmpsues84tk/tmpea2pu0m0.py", line 5
print input_a*input_b," ",2*input_a+2*input_b
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s967433863 | p02389 | u580607517 | 1417358703 | Python | Python | py | Runtime Error | 0 | 0 | 109 | if __name__ == '__main__':
input_a = input()
input_b = input()
print input_a*input_b,2*input_a+2*input_b | File "/tmp/tmpadv0v8qq/tmpyayclckt.py", line 5
print input_a*input_b,2*input_a+2*input_b
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s810298524 | p02389 | u580607517 | 1417358771 | Python | Python | py | Runtime Error | 0 | 0 | 79 | input_a = input()
input_b = input()
print input_a*input_b,2*input_a+2*input_b | File "/tmp/tmpikogo97i/tmpsfcn1v8e.py", line 4
print input_a*input_b,2*input_a+2*input_b
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s647717623 | p02389 | u580607517 | 1417358809 | Python | Python | py | Runtime Error | 0 | 0 | 83 | input_a = input()
input_b = input()
print input_a*input_b," ",2*input_a+2*input_b | File "/tmp/tmp2g0fzpzs/tmpprt41aag.py", line 4
print input_a*input_b," ",2*input_a+2*input_b
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s433689440 | p02389 | u580607517 | 1417359000 | Python | Python | py | Runtime Error | 0 | 0 | 87 | input_a = input()
input_b = input()
print (input_a*input_b, " ", 2*input_a+2*input_b) | Traceback (most recent call last):
File "/tmp/tmpddlyza19/tmpdioybyjd.py", line 1, in <module>
input_a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s931525043 | p02389 | u313839812 | 1417439567 | Python | Python | py | Runtime Error | 0 | 0 | 55 | a, b = map(int, input().split(' '))
print(a*b, 2*(a+b)) | Traceback (most recent call last):
File "/tmp/tmpqvryvpc5/tmpg0q1zv37.py", line 1, in <module>
a, b = map(int, input().split(' '))
^^^^^^^
EOFError: EOF when reading a line
| |
s853215609 | p02389 | u313839812 | 1417439609 | Python | Python | py | Runtime Error | 0 | 0 | 67 | import sys
a, b = map(int, input().split(' '))
print(a*b, 2*(a+b)) | Traceback (most recent call last):
File "/tmp/tmpw43qma6h/tmp1dgm07cu.py", line 3, in <module>
a, b = map(int, input().split(' '))
^^^^^^^
EOFError: EOF when reading a line
| |
s878835082 | p02389 | u615353970 | 1419158144 | Python | Python | py | Runtime Error | 0 | 0 | 142 | import sys
def solve():
for x in sys.stdin:
a,b = map(int,raw_input().split())
print a*b,2*a+2*b
if __name__ == "__main__":
solve() | File "/tmp/tmpp4jag15u/tmp9zyf8fhs.py", line 4
a,b = map(int,raw_input().split())
^
IndentationError: expected an indented block after 'for' statement on line 3
| |
s831387834 | p02389 | u749493116 | 1420101432 | Python | Python | py | Runtime Error | 0 | 0 | 58 | #coding utf-8
x=input()
y=input()
print x*y
print 2*(y+x) | File "/tmp/tmpld0hg7lh/tmpmayldwdw.py", line 5
print x*y
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s138839297 | p02389 | u749493116 | 1420105766 | Python | Python | py | Runtime Error | 0 | 0 | 65 | #coding utf-8
x,y = map(int, input().split())
print(x*y, 2*(x+y)) | Traceback (most recent call last):
File "/tmp/tmpq9oku1oc/tmppho94nzp.py", line 2, in <module>
x,y = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s132503318 | p02389 | u067975558 | 1421982054 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | params = input().rstrip().split('')
square = int(params[0]) * int(params[1])
length = (int(params[0]) + int(params[1])) * 2
print(square, length) | Traceback (most recent call last):
File "/tmp/tmp2mz2_ppf/tmpq7dff79r.py", line 1, in <module>
params = input().rstrip().split('')
^^^^^^^
EOFError: EOF when reading a line
| |
s962941837 | p02389 | u204429063 | 1421982075 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | params = input().rstrip().split('')
square = int(params[0]) * int(params[2])
length = (int(params[0]) + int(params[1])) * 2
print(square, length) | Traceback (most recent call last):
File "/tmp/tmp6fmld89n/tmpwkvkih6q.py", line 1, in <module>
params = input().rstrip().split('')
^^^^^^^
EOFError: EOF when reading a line
| |
s168151932 | p02389 | u204429063 | 1421982188 | Python | Python3 | py | Runtime Error | 0 | 0 | 147 | params = input().rstrip().split('')
square = int(params[0]) * int(params[1])
length = (int(params[0]) + int(params[1])) * 2
print(square, length) | Traceback (most recent call last):
File "/tmp/tmp58aweirx/tmppeg_0i7d.py", line 1, in <module>
params = input().rstrip().split('')
^^^^^^^
EOFError: EOF when reading a line
| |
s304575295 | p02389 | u527848444 | 1422236491 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | x = input().split(' ')
a = int(x[0)
b = int(x[1])
print((a * b), ((a + b) * 2)) | File "/tmp/tmp7ll8s93f/tmp_uo6s4qc.py", line 2
a = int(x[0)
^
SyntaxError: closing parenthesis ')' does not match opening parenthesis '['
| |
s417021739 | p02389 | u527848444 | 1422236519 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | x = input().split(" ")
a = int(x[0)
b = int(x[1])
print((a * b), ((a + b) * 2)) | File "/tmp/tmp80j88t8r/tmpph4wdhu7.py", line 2
a = int(x[0)
^
SyntaxError: closing parenthesis ')' does not match opening parenthesis '['
| |
s863769310 | p02389 | u442346200 | 1422236522 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | x = input().split(" ")
a = int(x[0])
b = int(x[1])
print((a * b), (a + b) * 2)) | File "/tmp/tmpb0fwx_wp/tmpr8ka6_n4.py", line 5
print((a * b), (a + b) * 2))
^
SyntaxError: unmatched ')'
| |
s534564864 | p02389 | u166912986 | 1422678707 | Python | Python | py | Runtime Error | 0 | 0 | 63 | n=int(raw_input())
k=int(raw_input())
s=n*k
l=2*(n+k)
print s,l | File "/tmp/tmpndhazl7j/tmpmj523dx7.py", line 5
print s,l
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s758997682 | p02389 | u166912986 | 1422678876 | Python | Python | py | Runtime Error | 0 | 0 | 66 | n, k =int(raw_input()), int(raw_input())
s=n*k
l=2*(n+k)
print s,l | File "/tmp/tmp4hfy5wde/tmpawihqnxj.py", line 4
print s,l
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s285751838 | p02389 | u442472098 | 1422978059 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | a,b = input().split(" ")
print(a*b,2*(a+b)) | Traceback (most recent call last):
File "/tmp/tmpsdex3k1c/tmp2qkjtki6.py", line 1, in <module>
a,b = input().split(" ")
^^^^^^^
EOFError: EOF when reading a line
| |
s225456294 | p02389 | u442472098 | 1422978150 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | n = input().split(" ")
print(n[0]*n[1],2*(n[0]+n[1])) | Traceback (most recent call last):
File "/tmp/tmp0cf5ek8g/tmpizg7y9iv.py", line 1, in <module>
n = input().split(" ")
^^^^^^^
EOFError: EOF when reading a line
| |
s337081463 | p02389 | u492556875 | 1424447237 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | import sys
(a, b) = [int(i) for i in sys.readline().split()]
print("%d %d" % (a * b, (a + b) * 2)) | Traceback (most recent call last):
File "/tmp/tmp1zr4nwp4/tmp4_gjez3e.py", line 3, in <module>
(a, b) = [int(i) for i in sys.readline().split()]
^^^^^^^^^^^^
AttributeError: module 'sys' has no attribute 'readline'
| |
s993843093 | p02389 | u742797815 | 1424697616 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | x, y = map(int, read().split())
print(x*y, 2*(x+y)) | Traceback (most recent call last):
File "/tmp/tmp48ga3qas/tmpeb0pbs3f.py", line 1, in <module>
x, y = map(int, read().split())
^^^^
NameError: name 'read' is not defined
| |
s366715356 | p02389 | u137212517 | 1429271745 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a, b = input().split()
print(a * b, 2 * (a + b)) | Traceback (most recent call last):
File "/tmp/tmp5sarthb8/tmpa74eldrv.py", line 1, in <module>
a, b = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s834410516 | p02389 | u669360983 | 1430023436 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | x,y)=map(int, input().split(" "))
print(x * y, 2 * x + 2* y) | File "/tmp/tmpfl_doceo/tmp38_g7p6a.py", line 1
x,y)=map(int, input().split(" "))
^
SyntaxError: unmatched ')'
| |
s309457665 | p02389 | u506372503 | 1431932144 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | a, b = map(int, input().split())
print(a*b, 2*(a+B)) | Traceback (most recent call last):
File "/tmp/tmp0p8mv60e/tmp2tch7ubp.py", line 1, in <module>
a, b = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s147228636 | p02389 | u555750476 | 1432107037 | Python | Python | py | Runtime Error | 0 | 0 | 51 | a,b=map(int,input().split())
3 5
print(a*b 2*a+2*b) | File "/tmp/tmpo7hcjics/tmpxh19m1gl.py", line 2
3 5
^
SyntaxError: invalid syntax
| |
s476098283 | p02389 | u555750476 | 1432107145 | Python | Python | py | Runtime Error | 0 | 0 | 59 | a,b=map(int,input().split())
3 5
x=a*b
y=2*a+2*b
print(a b) | File "/tmp/tmp8a03jif2/tmpfgnz688y.py", line 2
3 5
^
SyntaxError: invalid syntax
| |
s960796927 | p02389 | u062590758 | 1432107616 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | a,b=map(int,input().split())
print(a b) | File "/tmp/tmp1fonujy7/tmpujg5_0a9.py", line 2
print(a b)
^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s941628557 | p02389 | u555750476 | 1432108248 | Python | Python | py | Runtime Error | 0 | 0 | 51 | a,b=map(int,input().split())
3 5
print(a*b,2*a+2*b) | File "/tmp/tmptrs15wop/tmp0flo63va.py", line 2
3 5
^
SyntaxError: invalid syntax
| |
s974321071 | p02389 | u555750476 | 1432108312 | Python | Python | py | Runtime Error | 0 | 0 | 61 | a,b=map(int,input().split())
3 5
x=a*b
y=2*a+2*b
print(x,y)
| File "/tmp/tmp0_e03uxx/tmpzdjjmdxu.py", line 2
3 5
^
SyntaxError: invalid syntax
| |
s497203870 | p02389 | u555750476 | 1432108371 | Python | Python | py | Runtime Error | 0 | 0 | 53 | a,b=map(int,input().split())
3 5
print(a*b,2*a+2*b)
| File "/tmp/tmpf4a_htpz/tmpfzomxsit.py", line 2
3 5
^
SyntaxError: invalid syntax
| |
s259166623 | p02389 | u555750476 | 1432108384 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a,b=map(int,input().split())
3 5
print(a*b,2*a+2*b)
| File "/tmp/tmp2_h5xa6r/tmpsvpkrz34.py", line 2
3 5
^
SyntaxError: invalid syntax
| |
s069292324 | p02389 | u555750476 | 1432108509 | Python | Python | py | Runtime Error | 0 | 0 | 47 | a,b=map(int,input().split())
print(a*b,2*(a+b)) | Traceback (most recent call last):
File "/tmp/tmp7an6sm5q/tmpmhvwb0x2.py", line 1, in <module>
a,b=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s356603301 | p02389 | u555750476 | 1432108529 | Python | Python | py | Runtime Error | 0 | 0 | 51 | a,b=map(int,input().split())
3 5
print(a*b,2*(a+b)) | File "/tmp/tmppuypkksw/tmps6ogv8t0.py", line 2
3 5
^
SyntaxError: invalid syntax
| |
s181717133 | p02389 | u812648461 | 1432796061 | Python | Python | py | Runtime Error | 0 | 0 | 57 | a,b = input(),input()
print str(a*b) + ' ' + str((a+b)*2) | File "/tmp/tmpwz3qstum/tmpj2qxzrkr.py", line 2
print str(a*b) + ' ' + str((a+b)*2)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s318407203 | p02389 | u464218592 | 1434182056 | Python | Python | py | Runtime Error | 0 | 0 | 51 | x = int(raw_input())
y = int(raw_input())
print x*y | File "/tmp/tmp6lsaun18/tmpyz6txhlv.py", line 3
print x*y
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s875061528 | p02389 | u172616925 | 1434627353 | Python | Python | py | Runtime Error | 0 | 0 | 54 | import sys
a = sys.argv[1]
b = sys.argv[2]
print a*b | File "/tmp/tmpscu4jast/tmp8n7g2cxx.py", line 6
print a*b
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s172435372 | p02389 | u172616925 | 1434628389 | Python | Python | py | Runtime Error | 0 | 0 | 74 | l = map(int, input().split())
a = l[0]*l[1]
b = (l[0]+l[1])*2
print(a b) | File "/tmp/tmpka781ovy/tmpxzn_mz5y.py", line 6
print(a b)
^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s966191810 | p02389 | u172616925 | 1434628544 | Python | Python | py | Runtime Error | 0 | 0 | 78 | l = map(int, raw_input().split())
a = l[0]*l[1]
b = (l[0]+l[1])*2
print(a b) | File "/tmp/tmpj9iax10r/tmpw2wc44ew.py", line 6
print(a b)
^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s958476189 | p02389 | u255164080 | 1436145550 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | nums = input(3).split(5)
a = int(nums[0])
b = int(nums[1])
print(a * b,(a + b) * 2) | Traceback (most recent call last):
File "/tmp/tmprjo0t9y3/tmpv2qk3ide.py", line 1, in <module>
nums = input(3).split(5)
^^^^^^^^
EOFError: EOF when reading a line
| 3 |
s813924595 | p02389 | u467309160 | 1436145553 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | nums = input().split()
a = int(nums[0])
b = int(nums[1])
print(a*b,(a+b)*???) | File "/tmp/tmpeby1tuo4/tmpyyl384dg.py", line 4
print(a*b,(a+b)*???)
^
SyntaxError: invalid syntax
| |
s063793833 | p02389 | u686134343 | 1436145559 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | nums = input().split()
a - int(numus[0])
b = int(numus[1])
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpdhvcf22d/tmpt9y3yil_.py", line 1, in <module>
nums = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s298548482 | p02389 | u447630054 | 1436145577 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | nums = input().split()
a = int(nums[0])
b = int(num[1])
print(a * b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmp1cbwqgee/tmpajjd3ux9.py", line 1, in <module>
nums = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s160245671 | p02389 | u686134343 | 1436145608 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | nums = input().split()
a - int(nums[0])
b = int(nums[1])
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpvu2t6tjo/tmpg4gtkqav.py", line 1, in <module>
nums = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s746433994 | p02389 | u763673519 | 1436145660 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | nums = input().sprit()
a = int(nums[0])
b = int(nums[1])
print(a * b,(a + b) * 2) | Traceback (most recent call last):
File "/tmp/tmpjobr9497/tmp5947u5eq.py", line 1, in <module>
nums = input().sprit()
^^^^^^^
EOFError: EOF when reading a line
| |
s084824686 | p02389 | u686134343 | 1436145692 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | nums = input().split()
a - int(nums[0])
b = int(nums[1])
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmp546_bt20/tmpbn39erhf.py", line 1, in <module>
nums = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s568461854 | p02389 | u335511832 | 1436145712 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | x = int().split()
a = int(nums[0])
b = int(nums[1])
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmp225txk_t/tmpqr37djc4.py", line 1, in <module>
x = int().split()
^^^^^^^^^^^
AttributeError: 'int' object has no attribute 'split'
| |
s305135438 | p02389 | u255164080 | 1436145723 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | nums=input(3).split(5)
a=int(nums[0])
b=int(nums[1])
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpj_jwfc17/tmpqltqzhtv.py", line 1, in <module>
nums=input(3).split(5)
^^^^^^^^
EOFError: EOF when reading a line
| 3 |
s539609965 | p02389 | u686134343 | 1436145776 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | nums = input().split()
a - int(nums[0])
b = int(nums[1])
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmphdw77yp7/tmpt7a9u42v.py", line 1, in <module>
nums = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s716053952 | p02389 | u255164080 | 1436145849 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | nums = input(a).split(b)
a = int(nums[0])
b = int(nums[1])
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmp28k2qeh4/tmpbrcv0adz.py", line 1, in <module>
nums = input(a).split(b)
^
NameError: name 'a' is not defined
| |
s051618526 | p02389 | u763673519 | 1436146076 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | nums = input().sprit()
a = int(nums[0])
b = int(nums[1])
print(a * b,(a + b) * 2) | Traceback (most recent call last):
File "/tmp/tmps5vv61h3/tmp2hxxugev.py", line 1, in <module>
nums = input().sprit()
^^^^^^^
EOFError: EOF when reading a line
| |
s761720755 | p02389 | u335511832 | 1436146267 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | x = input().split()
a = (nums[0])
b = (nums[1])
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmp93pg8i96/tmp8ycmen9h.py", line 1, in <module>
x = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s553994052 | p02389 | u335511832 | 1436146465 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | atai = input().split()
a = (atai[0])
b = (atai[1])
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpfkde_iex/tmpss_lgcsu.py", line 1, in <module>
atai = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s409761606 | p02389 | u484576700 | 1436445962 | Python | Python | py | Runtime Error | 0 | 0 | 57 | a,b = map(int,raw_input.split())
print a * b (a + b) * 2 | File "/tmp/tmpx4_wsdyr/tmp1vfyh1m9.py", line 2
print a * b (a + b) * 2
^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s652346497 | p02389 | u802705119 | 1436527815 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | #include <stdio.h>
int main(void) {
int x;
scanf("%d", &x);
printf("%d\n", x*x*x);
return 0;
} | File "/tmp/tmp9tq7h4gp/tmplihd4voy.py", line 2
int main(void) {
^^^^
SyntaxError: invalid syntax
| |
s689654765 | p02389 | u050030500 | 1436685401 | Python | Python | py | Runtime Error | 0 | 0 | 87 | #!/usr/bin/python
# -*- coding: utf-8 -*-
a,b = input()
print "%d %d"% (a*b, 2*(a+b)) | File "/tmp/tmp2_hzsqyw/tmpq0aapixj.py", line 6
print "%d %d"% (a*b, 2*(a+b))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s393079731 | p02389 | u669360983 | 1437551331 | Python | Python | py | Runtime Error | 0 | 0 | 80 | s=int(raw_input())
h=s/3600
m=(s-3600*h)/60
print "%d:%d:%d"%(h,m,s-3600*h-60*m) | File "/tmp/tmpfz2t38kp/tmpfu8vyo6x.py", line 4
print "%d:%d:%d"%(h,m,s-3600*h-60*m)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.