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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s226605865 | p02389 | u721103753 | 1497507251 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a = input()
b = input()
print(int(a) * int(b) + ' ' + int(a) * 2 + int(b) * 2) | Traceback (most recent call last):
File "/tmp/tmpj7i9yf95/tmp4cwa225r.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s584139232 | p02389 | u027278270 | 1497507261 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | [a,b] = int(input()).split
c = a*b
d = a*2 + b*2
print(c d) | File "/tmp/tmpbulzu7_j/tmp1jx62d6c.py", line 4
print(c d)
^
SyntaxError: invalid syntax
| |
s794629906 | p02389 | u658089986 | 1497507286 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | x=input().split()
a = x[0]
b = x[1]
print(a*b,end=' ')
print(a*2+b*2) | Traceback (most recent call last):
File "/tmp/tmpxurvzlbe/tmpkuhjyxcz.py", line 1, in <module>
x=input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s150376223 | p02389 | u486972540 | 1497507291 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a = int(input())
b = int(input())
print(a*b)
print((a+b)*2) | Traceback (most recent call last):
File "/tmp/tmp8i28uyop/tmp11k4t7is.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s074558201 | p02389 | u333596716 | 1497507300 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a = int(input())
b = int(input())
menseki = a*b
nagasa = a+a+b+b
print(menseki,nagasa) | Traceback (most recent call last):
File "/tmp/tmprorp6gyh/tmpzxwr7zpb.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s214875266 | p02389 | u698693989 | 1497507341 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | a,b = int(input())
print(a*b,a*2+b*2) | Traceback (most recent call last):
File "/tmp/tmpujlm10sr/tmp3nhh8r7h.py", line 1, in <module>
a,b = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s521386543 | p02389 | u658089986 | 1497507342 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | x=input().split()
a = x[0]
b = x[1]
print( a*b +' '+ a*2+b*2 ) | Traceback (most recent call last):
File "/tmp/tmp3eiuh_ly/tmpdc_jbd72.py", line 1, in <module>
x=input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s342074783 | p02389 | u565553603 | 1497507351 | Python | Python3 | py | Runtime Error | 0 | 0 | 169 | #?????? a cm ?????? b cm ???????????¢?????¢?????¨??¨?????????????±???????????????°?????????????????????????????????
x = int(a + a)
y = int(b + b)
print int(x + y) | File "/tmp/tmpx_l1yngs/tmpnphqv2t1.py", line 5
print int(x + y)
^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s793819100 | p02389 | u478810373 | 1497507377 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a = int(input())
b = int(input())
print((a*b) (a+b)*2) | Traceback (most recent call last):
File "/tmp/tmp2sqwzjmr/tmp6_e71x2e.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s648628855 | p02389 | u486972540 | 1497507393 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a = int(input())
b = int(input())
print(a*b)
print((a+b)*2) | Traceback (most recent call last):
File "/tmp/tmppd8prm3m/tmpduwpsj1m.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s718703202 | p02389 | u692161606 | 1497507398 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | a = int(input())
b = int(input())
a * b
(a + b) * 2 | Traceback (most recent call last):
File "/tmp/tmpv3rlmmur/tmprta7drdf.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s339545238 | p02389 | u818923713 | 1497507412 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | print((a * b)* 2)) | File "/tmp/tmpaj2zhbpc/tmpmx834kwk.py", line 1
print((a * b)* 2))
^
SyntaxError: unmatched ')'
| |
s168067266 | p02389 | u410114382 | 1497507460 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a,b[int(x) for x in input().split()]
print(a*b,(a+b)*2) | File "/tmp/tmpaae6rt1l/tmp0zw7h9fu.py", line 1
a,b[int(x) for x in input().split()]
^^^
SyntaxError: invalid syntax
| |
s040390903 | p02389 | u169794024 | 1497507469 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b=map(int,input(),split())
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpamo7axcw/tmp9r7oaupn.py", line 1, in <module>
a,b=map(int,input(),split())
^^^^^^^
EOFError: EOF when reading a line
| |
s759865795 | p02389 | u658089986 | 1497507487 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | x=input().split()
a = int(x[0])
b = int(x[1])
print( a*b +' '+ a*2+b*2 ) | Traceback (most recent call last):
File "/tmp/tmpdz7qvhsg/tmp27uux7th.py", line 1, in <module>
x=input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s426682591 | p02389 | u565553603 | 1497507536 | Python | Python3 | py | Runtime Error | 0 | 0 | 16 | print int(a * b) | File "/tmp/tmptu4lu8jb/tmp3c4oins9.py", line 1
print int(a * b)
^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s141279032 | p02389 | u721103753 | 1497507569 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | [a, b] = [int(input()) for _ in range(2)]
print(a * b + ' ' + (a + b) * 2) | Traceback (most recent call last):
File "/tmp/tmpgytn9emt/tmpibna50_d.py", line 1, in <module>
[a, b] = [int(input()) for _ in range(2)]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmpgytn9emt/tmpibna50_d.py", line 1, in <listcomp>
[a, b] = [int(input()) for _ in range(2)]
^^^^^^^
EOFError: EOF when reading a line
| |
s997587504 | p02389 | u721221949 | 1497507570 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | [a, b] = map(int, input().split())
print(a*b + " " + (a+b)*2) | Traceback (most recent call last):
File "/tmp/tmp4qdxk5jk/tmp2n3mqdbk.py", line 1, in <module>
[a, b] = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s445786485 | p02389 | u698693989 | 1497507603 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | a,b=int(input()).split()
print(a*b,a*2+b*2) | Traceback (most recent call last):
File "/tmp/tmppmu4x23h/tmpg9ez_f38.py", line 1, in <module>
a,b=int(input()).split()
^^^^^^^
EOFError: EOF when reading a line
| |
s504695618 | p02389 | u027278270 | 1497507624 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a = int(input())
b = int(input())
c = a*b
d = (a*2)+(b*2)
print(c,d) | Traceback (most recent call last):
File "/tmp/tmphgiupgou/tmp9si6kmfh.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s609421561 | p02389 | u333596716 | 1497507718 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | a,b = int(input())
print(a+b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpmg2d1eil/tmp668gei8o.py", line 1, in <module>
a,b = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s396427146 | p02389 | u721103753 | 1497507781 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | [a, b] = [int(_) for _ in input().split()]
print(a * b + ' ' + (a + b) * 2) | Traceback (most recent call last):
File "/tmp/tmpuf_42sxm/tmpgkvfg538.py", line 1, in <module>
[a, b] = [int(_) for _ in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s295480503 | p02389 | u333596716 | 1497507798 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a = int(input())
b = int(input())
print((a+b),(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpmx7u7o5b/tmpatn75510.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s270313651 | p02389 | u658089986 | 1497507809 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | 1 x=input().split()
2 a = int(x[0])
3 b = int(x[1])
4
5 print( a*b , a*2+b*2 )
6 | File "/tmp/tmpgdmdq7r4/tmp3vxhu0u6.py", line 1
1 x=input().split()
IndentationError: unexpected indent
| |
s395686182 | p02389 | u569585396 | 1497507855 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | (a, b) = int(input()).split()
print("a * b" + " " + "a * 2 + a * 2") | Traceback (most recent call last):
File "/tmp/tmp_xxhgksp/tmpmn33mt4e.py", line 1, in <module>
(a, b) = int(input()).split()
^^^^^^^
EOFError: EOF when reading a line
| |
s860979134 | p02389 | u698693989 | 1497507917 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b = int(input()).split
print(a*b," "a*2+b*2) | File "/tmp/tmp7tboikxl/tmp4fm75nzf.py", line 2
print(a*b," "a*2+b*2)
^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s006982443 | p02389 | u623827446 | 1497507981 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | x=str(input())
n='x'.split(" ", 2)
a=n[0]
b=n[1]
ab=a*b
a_b=(a+b)*2
print('ab',end=' ')
print('a_b') | Traceback (most recent call last):
File "/tmp/tmpn6qsvudg/tmpjvfhwaa5.py", line 1, in <module>
x=str(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s700309661 | p02389 | u569585396 | 1497508013 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | (a, b) = [int(i) for i in input().split]
print(a * 2, (a + b) * 2) | Traceback (most recent call last):
File "/tmp/tmp9vz8vmla/tmp7f9khsvm.py", line 1, in <module>
(a, b) = [int(i) for i in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s285085910 | p02389 | u333596716 | 1497508130 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a = int(input())
b = int(input())
print sprit((a+b),(a+b)*2) | File "/tmp/tmppodv61b8/tmpn07q_vgx.py", line 3
print sprit((a+b),(a+b)*2)
^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s123035641 | p02389 | u569585396 | 1497508236 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | i = input().split()
a = input(x[1])
b = input(x[-1])
print(a*b, (a+b)*2) | Traceback (most recent call last):
File "/tmp/tmposvuv7lv/tmp5yf86ajt.py", line 1, in <module>
i = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s189042118 | p02389 | u569585396 | 1497508288 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | i = input().split()
a = int(x[1])
b = int(x[-1])
print(a*b, (a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpg6f397m6/tmptbth795g.py", line 1, in <module>
i = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s701014704 | p02389 | u698693989 | 1497508302 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | x=input().split
y=map(int,x)
a=y[0]
b=y[1]
c=a*b
d=(a+b)*2
print c, d | File "/tmp/tmpnxrpax23/tmpjwlf6fuh.py", line 7
print c, d
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s773192091 | p02389 | u623827446 | 1497508350 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | x=str(input())
n=x.split(" ", 2)
a=n[0]
b=n[1]
ab=a*b
a_b=(a+b)*2
print('ab', end=' ')
print('a_b') | Traceback (most recent call last):
File "/tmp/tmp33ms103n/tmppl49z3ym.py", line 1, in <module>
x=str(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s675232431 | p02389 | u569585396 | 1497508384 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | i = input().split()
a = int(x(1))
b = int(x(-1))
print(a*b, (a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpfkubejsp/tmpab8ja2xs.py", line 1, in <module>
i = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s517160599 | p02389 | u486972540 | 1497508400 | Python | Python3 | py | Runtime Error | 0 | 0 | 44 | a,b = int(input())
print(a*b)
print((a+b)*2) | Traceback (most recent call last):
File "/tmp/tmp2um1ufqd/tmpctglg7o6.py", line 1, in <module>
a,b = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s884916192 | p02389 | u363648401 | 1497508402 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a.b=[int(i) for i in input().split()]
print(a*b (a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpkr60nq2y/tmpba601jlv.py", line 1, in <module>
a.b=[int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s479501402 | p02389 | u698693989 | 1497508437 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | x=int(input()).split
a=x[0]
b=x[1]
c=a*b
d=(a+b)*2
print c, d | File "/tmp/tmpt7ed5lqc/tmpitzhb2zj.py", line 6
print c, d
^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s744353884 | p02389 | u818923713 | 1497508481 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | x = ( a * b ) * 2
z = ( a / x ) or ( b / x )
print( x, z ) | Traceback (most recent call last):
File "/tmp/tmptrjeg4eg/tmpzsf3gvu_.py", line 1, in <module>
x = ( a * b ) * 2
^
NameError: name 'a' is not defined
| |
s082445090 | p02389 | u569585396 | 1497508482 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | x = input().split()
a = int(x(0))
b = int(x(0))
print(a*b, (a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpq7v7u7gn/tmph9xqlb_r.py", line 1, in <module>
x = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s693907883 | p02389 | u363648401 | 1497508542 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a.b=int(i) for i in input().split()]
print(a*b.a+a+b+b) | File "/tmp/tmpcc9n9z32/tmpcs6zudmm.py", line 1
a.b=int(i) for i in input().split()]
^
SyntaxError: unmatched ']'
| |
s688677517 | p02389 | u333596716 | 1497508589 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a = int(input())
b = int(input())
menseki = a*b
nagasa = (a+b)*2
print mensaki,nagasa.split() | File "/tmp/tmp2nit6e3r/tmpcn1o3lsa.py", line 5
print mensaki,nagasa.split()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s656981328 | p02389 | u333596716 | 1497508658 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a = int(input())
b = int(input())
menseki = a*b
nagasa = (a+b)*2
print mensaki.nagasa.split() | File "/tmp/tmpd331o59u/tmpm0lth9e_.py", line 5
print mensaki.nagasa.split()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s026742277 | p02389 | u486972540 | 1497508693 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a,b = [int(i) for i in input().split()]
print(a*b)
print((a*2+b*2) | File "/tmp/tmp9gom16eg/tmpm8ktuday.py", line 3
print((a*2+b*2)
^
SyntaxError: '(' was never closed
| |
s422726601 | p02389 | u333596716 | 1497508770 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a = int(input()split())
b = int(input()split())
print((a*b),(a+b*2)) | File "/tmp/tmp_j8n0spw/tmp3r87optb.py", line 1
a = int(input()split())
^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s331707273 | p02389 | u333596716 | 1497508901 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a = int(input()split())
b = int(input()split())
print((a*b),(a+b)*2) | File "/tmp/tmpj6vvdmul/tmpkwylv89y.py", line 1
a = int(input()split())
^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s914287578 | p02389 | u818923713 | 1497508906 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a,b = [int x for in input().split()]
print( a * b,(a * b ) * 2) | File "/tmp/tmpdzgocmyy/tmp88e2hvnh.py", line 1
a,b = [int x for in input().split()]
^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s619377944 | p02389 | u333596716 | 1497508979 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a = int(input().split())
b = int(input().split())
print((a*b),(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmp5oa6hsl1/tmpcyafmx8j.py", line 1, in <module>
a = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s606253475 | p02389 | u333596716 | 1497509346 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a = int(input().split())
b = int(input().split())
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpupeq9gwr/tmpda4rzfoi.py", line 1, in <module>
a = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s040387119 | p02389 | u923630348 | 1497509364 | Python | Python3 | py | Runtime Error | 0 | 0 | 10 | a,b=[input | File "/tmp/tmpw004h1k5/tmppwrj9olj.py", line 1
a,b=[input
^
SyntaxError: '[' was never closed
| |
s236265956 | p02389 | u692161606 | 1497509377 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | [a, b] = int(input()).split()
print(a*b, (a+b)*2) | Traceback (most recent call last):
File "/tmp/tmp9jfid3xi/tmpv8o20w5m.py", line 1, in <module>
[a, b] = int(input()).split()
^^^^^^^
EOFError: EOF when reading a line
| |
s040761224 | p02389 | u831971779 | 1497509418 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | [a,b] = map(int,input().split())
print(a*b a*2+b*2) | File "/tmp/tmpweslaa1p/tmp1q8vx2u7.py", line 2
print(a*b a*2+b*2)
^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s427422472 | p02389 | u333596716 | 1497509428 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a = (int,input().split())
b = (int,input().split())
print((a*b),(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpxkckhlz1/tmppvx1c4v6.py", line 1, in <module>
a = (int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s409325261 | p02389 | u776018831 | 1497509537 | Python | Python3 | py | Runtime Error | 0 | 0 | 169 | #?????? a cm ?????? b cm ???????????¢?????¢?????¨??¨?????????????±???????????????°?????????????????????????????????
a,b=map(int,input(),split())
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpy11q3jts/tmpj3182nj5.py", line 2, in <module>
a,b=map(int,input(),split())
^^^^^^^
EOFError: EOF when reading a line
| |
s269288409 | p02389 | u776018831 | 1497509899 | Python | Python3 | py | Runtime Error | 0 | 0 | 169 | #?????? a cm ?????? b cm ???????????¢?????¢?????¨??¨?????????????±???????????????°?????????????????????????????????
a,b=map(int,input(),split())
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpa4o20x1e/tmp1pltcdrg.py", line 2, in <module>
a,b=map(int,input(),split())
^^^^^^^
EOFError: EOF when reading a line
| |
s370152878 | p02389 | u831971779 | 1497510077 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | [a,b]=map(int,input(),split())
print(a*b,a*2+b*2) | Traceback (most recent call last):
File "/tmp/tmp7kibttiu/tmp2fib090z.py", line 1, in <module>
[a,b]=map(int,input(),split())
^^^^^^^
EOFError: EOF when reading a line
| |
s913147551 | p02389 | u831971779 | 1497510181 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | [a,b]=map(int,input(),split())
print(a*b,a*2+b*2) | Traceback (most recent call last):
File "/tmp/tmp90hc7zee/tmp5dwtebkz.py", line 1, in <module>
[a,b]=map(int,input(),split())
^^^^^^^
EOFError: EOF when reading a line
| |
s348726014 | p02389 | u831971779 | 1497510253 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | [a,b]=map(int,input(),split())
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmptb6rypzd/tmpxxhcx6p0.py", line 1, in <module>
[a,b]=map(int,input(),split())
^^^^^^^
EOFError: EOF when reading a line
| |
s294960442 | p02389 | u831971779 | 1497510313 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | [a,b]=map(int,input(),split())
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmprfmsive1/tmpc2slqjki.py", line 1, in <module>
[a,b]=map(int,input(),split())
^^^^^^^
EOFError: EOF when reading a line
| |
s531042561 | p02389 | u831971779 | 1497510374 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b=map(int,input(),split())
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpeknhqbls/tmpxwx_mfj1.py", line 1, in <module>
a,b=map(int,input(),split())
^^^^^^^
EOFError: EOF when reading a line
| |
s643596091 | p02389 | u831971779 | 1497510979 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | [a,b] = map(int,input(),split())
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmp3pmn1uta/tmpuptsns4r.py", line 1, in <module>
[a,b] = map(int,input(),split())
^^^^^^^
EOFError: EOF when reading a line
| |
s101170196 | p02389 | u692161606 | 1497511628 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | [a, b] = map(int(input().split()))
print(a * b,(a + b) * 2) | Traceback (most recent call last):
File "/tmp/tmp7iwxkcci/tmp6ir538xe.py", line 1, in <module>
[a, b] = map(int(input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s940783737 | p02389 | u565553603 | 1497511655 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a,b = (int[input.split])
print (a * b,(a + b) * 2) | Traceback (most recent call last):
File "/tmp/tmpw4a18srx/tmpcjamfcbm.py", line 1, in <module>
a,b = (int[input.split])
^^^^^^^^^^^
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
| |
s037002296 | p02389 | u565553603 | 1497511842 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a,b=int(input(),split())
print (a * b,(a + b) * 2) | Traceback (most recent call last):
File "/tmp/tmp_btn8uuo/tmpfuz26_we.py", line 1, in <module>
a,b=int(input(),split())
^^^^^^^
EOFError: EOF when reading a line
| |
s958947943 | p02389 | u451779396 | 1497513127 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 |
[a,b]=input(),split() | Traceback (most recent call last):
File "/tmp/tmpatxo5omh/tmpk_mab1zx.py", line 3, in <module>
[a,b]=input(),split()
^^^^^^^
EOFError: EOF when reading a line
| |
s420610120 | p02389 | u627002197 | 1497609929 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | #????????§??\????????\??????????????????
list1 = [int(i) for i in input().split()]
print("{0} {1}",.format(list1[0]+list[1],list1[0]*list1[1]) | File "/tmp/tmp9meul_vv/tmpjagwe1de.py", line 3
print("{0} {1}",.format(list1[0]+list[1],list1[0]*list1[1])
^
SyntaxError: invalid syntax
| |
s846627052 | p02389 | u627002197 | 1497609954 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | #????????§??\????????\??????????????????
list1 = [int(i) for i in input().split()]
print("{0} {1}",.format(list1[0]+list[1],list1[0]*list1[1])) | File "/tmp/tmp9tllpeh2/tmp8qblwb0p.py", line 3
print("{0} {1}",.format(list1[0]+list[1],list1[0]*list1[1]))
^
SyntaxError: invalid syntax
| |
s916888743 | p02389 | u627002197 | 1497609996 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | #????????§??\????????\??????????????????
list1 = [int(i) for i in input().split()]
print("{0} {1}".format(list1[0]+*list[1],list1[0]*2+list1[1]*2)) | File "/tmp/tmpf7t5cywb/tmp2mpwoz9v.py", line 3
print("{0} {1}".format(list1[0]+*list[1],list1[0]*2+list1[1]*2))
^
SyntaxError: invalid syntax
| |
s698205144 | p02389 | u627002197 | 1497610033 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | list1 = [int(i) for i in input().split()]
print("{0} {1}".format(list1[0]+*list[1],list1[0]*2+list1[1]*2)) | File "/tmp/tmpwyk3evz7/tmpjiu579u6.py", line 2
print("{0} {1}".format(list1[0]+*list[1],list1[0]*2+list1[1]*2))
^
SyntaxError: invalid syntax
| |
s396986772 | p02389 | u627002197 | 1497610053 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | #list1 = [int(i) for i in input().split()]
print("{0} {1}".format(list1[0]+*list[1],list1[0]*2+list1[1]*2)) | File "/tmp/tmp_odj84p1/tmpc1o77wnf.py", line 2
print("{0} {1}".format(list1[0]+*list[1],list1[0]*2+list1[1]*2))
^
SyntaxError: invalid syntax
| |
s746798643 | p02389 | u627002197 | 1497610156 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | list1 = [int(i) for i in input().split()]
print("{0} {1}".format(list[0],list[1])) | Traceback (most recent call last):
File "/tmp/tmpacrsxf2y/tmpn1jc32ki.py", line 1, in <module>
list1 = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s792480661 | p02389 | u627002197 | 1497610193 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | list1 = [int(i) for i in input().split()]
print("{0:d} {1:d}".format(list[0],list[1])) | Traceback (most recent call last):
File "/tmp/tmpb7le4aaw/tmpvng7hxd2.py", line 1, in <module>
list1 = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s639374495 | p02389 | u627002197 | 1497610370 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | list1 = [int(i) for i in input().split()]
print(list[0]) | Traceback (most recent call last):
File "/tmp/tmp4wjdjm01/tmpolynin4i.py", line 1, in <module>
list1 = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s792085824 | p02389 | u627002197 | 1497610386 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | list1 = [int(i) for i in input().split()]
print("{0}".format(list[0])) | Traceback (most recent call last):
File "/tmp/tmp20thyl2j/tmpq9mrcn1v.py", line 1, in <module>
list1 = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s390610633 | p02389 | u627002197 | 1497610402 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | list1 = [int(i) for i in input().split()]
print(list[0]) | Traceback (most recent call last):
File "/tmp/tmpivhojwwv/tmpj3hsy6of.py", line 1, in <module>
list1 = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s818387773 | p02389 | u627002197 | 1497610412 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | list1 = [int(i) for i in input().split()]
print(int(list[0])) | Traceback (most recent call last):
File "/tmp/tmp_qyuv5_3/tmpap46_gi5.py", line 1, in <module>
list1 = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s360516113 | p02389 | u627002197 | 1497610537 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | item = [int(i) for i in input().split()]
print(item[0]*item[1]+" ") | Traceback (most recent call last):
File "/tmp/tmppnsakup3/tmpugc8u55a.py", line 1, in <module>
item = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s159525460 | p02389 | u627002197 | 1497610585 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | item = [int(i) for i in input().split()]
print(item[0]*item[1]+" "+2*(item[0]+item[1])) | Traceback (most recent call last):
File "/tmp/tmp68n3xihv/tmp3kqp210u.py", line 1, in <module>
item = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s714265527 | p02389 | u200401481 | 1497806438 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | x = map(int,input().split())
print(str(x[0]*x[1])+" "+str(2*x[0]+2*x[1])) | Traceback (most recent call last):
File "/tmp/tmpycmg2bw8/tmpresfbldu.py", line 1, in <module>
x = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s445136704 | p02389 | u386861275 | 1497889526 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a=int(input())
b=int(input())
print(a*b,end=" ")
print((a+b)*2) | Traceback (most recent call last):
File "/tmp/tmp3r1wgegt/tmpr2s1e1ix.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s643919217 | p02389 | u451779396 | 1498030147 | Python | Python3 | py | Runtime Error | 0 | 0 | 20 |
[a,b]=input(),split | Traceback (most recent call last):
File "/tmp/tmp0jab0g52/tmp_ewhhju2.py", line 2, in <module>
[a,b]=input(),split
^^^^^^^
EOFError: EOF when reading a line
| |
s198988685 | p02389 | u079986660 | 1498031168 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a = int(input())
b = int(input())
print(a*b)
print((a*2)(b*2)) | Traceback (most recent call last):
File "/tmp/tmpg3s4fs9a/tmpsg_hf4pv.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s339308694 | p02389 | u079986660 | 1498031184 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a = int(input())
b = int(input())
print(a*b)
print((a*2)+(b*2)) | Traceback (most recent call last):
File "/tmp/tmpsedac7ou/tmp7xsz_xtd.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s771208228 | p02389 | u079986660 | 1498031230 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a = int(input())
b = int(input())
print(a*b)
print(a*2+b*2) | Traceback (most recent call last):
File "/tmp/tmp6g5_d1ja/tmplwv2_pjn.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s148307854 | p02389 | u079986660 | 1498031358 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a = int(input())
b = int(input())
print(a*b)(a*2+b*2) | Traceback (most recent call last):
File "/tmp/tmp0mj5sp8_/tmplyxa0m9s.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s206725066 | p02389 | u079986660 | 1498031493 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a = int(input())
b = int(input())
print((a*b),(a*2+b*2)) | Traceback (most recent call last):
File "/tmp/tmp62jkrfij/tmp3anjlu_m.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s268973225 | p02389 | u079986660 | 1498031658 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a = int(input())
b = int(input())
print(a*b) (a*2+b*2) | Traceback (most recent call last):
File "/tmp/tmphiq0f8rl/tmpd1noj5ez.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s548916373 | p02389 | u504760777 | 1498037023 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a = input()
b = input()
print(a * b 2 * a + 2 * b) | File "/tmp/tmprs0uqilv/tmpmej_iwag.py", line 3
print(a * b 2 * a + 2 * b)
^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s593512019 | p02389 | u354053070 | 1498246229 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | l = input().split
a, b = list(map(int, l))
print(a * b, 2 * (a + b)) | Traceback (most recent call last):
File "/tmp/tmplltq_aaj/tmpu7k5hk1p.py", line 1, in <module>
l = input().split
^^^^^^^
EOFError: EOF when reading a line
| |
s563253557 | p02389 | u729486845 | 1498570384 | Python | Python3 | py | Runtime Error | 0 | 0 | 154 | input_raw = input()
input_data = input_raw.split(' ')
s=input_data[0]*input_data[1]
x=input_data[0]*2+input_data[1]*2
print(string(s) & " " & string(x)) | Traceback (most recent call last):
File "/tmp/tmpkht8g__t/tmpabnkklmd.py", line 1, in <module>
input_raw = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s597633431 | p02389 | u729486845 | 1498570547 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | inputRaw=input()
inputData=inputRaw.split(' ')
s=inputData[0]*inputData[1]
x=(inputData[0]+inputData[1])*2
print(str(s)+" "+str(x)) | Traceback (most recent call last):
File "/tmp/tmp7vsoyezg/tmp8i0i12h8.py", line 1, in <module>
inputRaw=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s517770905 | p02389 | u729486845 | 1498570589 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | inputRaw=input()
inputData=inputRaw.split(' ')
s=inputData[0]*inputData[1]
x=(inputData[0]+inputData[1])*2
print(str(s)&" "&str(x)) | Traceback (most recent call last):
File "/tmp/tmpk11k46ky/tmpf2cvx14q.py", line 1, in <module>
inputRaw=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s741630981 | p02389 | u257897291 | 1498657877 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a = int(input())
b = int(input())
print(a*b,(a+b)*2) | Traceback (most recent call last):
File "/tmp/tmpm_74te70/tmpaub1nm5x.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s358633547 | p02389 | u029473859 | 1498773282 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | input_lines = input()
input_i = input_lines.sprit()
print(input_i[0]*input_[1])
print(input_i[0]*2 + input_[1]*2) | Traceback (most recent call last):
File "/tmp/tmppo_n9f2_/tmpf8ro_uaz.py", line 1, in <module>
input_lines = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s625297968 | p02389 | u067677727 | 1498789854 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | import sys
a, b = list(map(int, sys.stdin.readline(),split()))
print(a*b, 2*a+2*b) | Traceback (most recent call last):
File "/tmp/tmpqac2gl20/tmp2tx48q_i.py", line 3, in <module>
a, b = list(map(int, sys.stdin.readline(),split()))
^^^^^
NameError: name 'split' is not defined
| |
s691878757 | p02389 | u299798926 | 1498795376 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | x=int(input())
y=int(input())
s=x*y
l=2*x+2*y
print(s," ",l) | Traceback (most recent call last):
File "/tmp/tmp5136_vbq/tmpmil196hh.py", line 1, in <module>
x=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s628665162 | p02389 | u299798926 | 1498795492 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | x,y=int(input().split())
s=x*y
l=2*x+2*y
print(s," ",l) | Traceback (most recent call last):
File "/tmp/tmpc6o2o5u1/tmpf0dzsqzz.py", line 1, in <module>
x,y=int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s829394619 | p02389 | u299798926 | 1498795823 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | x=int(input().split())
s=x[0]*x[1]
l=2*x[0]+2*x[1]
print("{0} {1}",format(x[0],x[1])) | Traceback (most recent call last):
File "/tmp/tmpy54i8h58/tmp5zq7qflx.py", line 1, in <module>
x=int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s952921520 | p02389 | u340500592 | 1498970390 | Python | Python | py | Runtime Error | 0 | 0 | 140 | if __name__ == '__main__':
a, b = map(int, raw_input().split())
area = a * b
circumference = 2*a + 2*b
print(area + ' ' + circumference) | Traceback (most recent call last):
File "/tmp/tmp9f2paurp/tmp91of1uao.py", line 2, in <module>
a, b = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s927529208 | p02389 | u340500592 | 1498970422 | Python | Python | py | Runtime Error | 0 | 0 | 109 | a, b = map(int, raw_input().split())
area = a * b
circumference = 2*a + 2*b
print(area + ' ' + circumference) | Traceback (most recent call last):
File "/tmp/tmp5ylb2xe0/tmpyn8rpn0h.py", line 1, in <module>
a, b = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s006746557 | p02389 | u340500592 | 1498970499 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | a, b = input().split())
area = a * b
circumference = 2*a + 2*b
print(area + ' ' + circumference) | File "/tmp/tmplg_xcai1/tmpyem69v1q.py", line 1
a, b = input().split())
^
SyntaxError: unmatched ')'
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.