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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s122894509 | p02388 | u186524656 | 1402031556 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | print (input())**3 | Traceback (most recent call last):
File "/tmp/tmpp2w15w_4/tmp6mtm55va.py", line 1, in <module>
print (input())**3
^^^^^^^
EOFError: EOF when reading a line
| |
s582441975 | p02388 | u186524656 | 1402033362 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) | Traceback (most recent call last):
File "/tmp/tmp6yezun63/tmpqhgvxrqr.py", line 1, in <module>
x = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s875182525 | p02389 | u247186218 | 1530933056 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | row = input().split()
print(row[0] * row[1], 2 * (row[0] + row[1]))
| Traceback (most recent call last):
File "/tmp/tmpo2ylsdgf/tmp7q73s6mx.py", line 1, in <module>
row = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s404151320 | p02389 | u089116225 | 1531130218 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a,b = map(int,input().split())
s = a*b
l = 2*(a+b)
return s,l
| File "/tmp/tmpqn36yd4_/tmpsr2ivuzr.py", line 6
return s,l
^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s234634192 | p02389 | u896746547 | 1531235049 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | a,b = [int(i) for i input().split()]
print(a*b , (a+b)*2)
| File "/tmp/tmp_ttzqdfl/tmp_rnehr_7.py", line 1
a,b = [int(i) for i input().split()]
^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s880141411 | p02389 | u138628845 | 1531274947 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a = input()
b = input()
c = int(a) * int(b)
d = (int(a)*2) + (int(b)*2)
print(c)
print(d)
| Traceback (most recent call last):
File "/tmp/tmp5derkwfl/tmp4fxq8pxn.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s219551625 | p02389 | u138628845 | 1531275296 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a = input()
b = input()
c = int(a) * int(b)
d = (int(a)*2) + (int(b)*2)
print('%d %d' %(c,d))
| Traceback (most recent call last):
File "/tmp/tmpn3c7a76t/tmp2nbq5hs2.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s152518940 | p02389 | u467175809 | 1531291081 | Python | Python | py | Runtime Error | 0 | 0 | 50 | a, b = map(int, raw_input().split())
print a * b
| File "/tmp/tmpghhuvurb/tmpxo3f76oy.py", line 1
a, b = map(int, raw_input().split())
IndentationError: unexpected indent
| |
s539139309 | p02389 | u324811972 | 1531363040 | Python | Python | py | Runtime Error | 0 | 0 | 93 | length = input().split()
a = length[0]
b = length[1]
area = a*b
per = 2*a+2*b
print(a," ",b)
| Traceback (most recent call last):
File "/tmp/tmppaoeov5j/tmpqrucukwz.py", line 1, in <module>
length = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s109074720 | p02389 | u324811972 | 1531363079 | Python | Python | py | Runtime Error | 0 | 0 | 111 | length0 = input()
length = length0.split()
a = length[0]
b = length[1]
area = a*b
per = 2*a+2*b
print(a," ",b)
| Traceback (most recent call last):
File "/tmp/tmp6m2a1_cu/tmpwzc6nqv2.py", line 1, in <module>
length0 = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s221256378 | p02389 | u324811972 | 1531363144 | Python | Python | py | Runtime Error | 0 | 0 | 116 | length0 = input()
length = length0.split()
a = length[0]
b = length[1]
area = a*b
per = 2*a+2*b
print(area," ",per)
| Traceback (most recent call last):
File "/tmp/tmpygcyajn7/tmpbh_o3jvg.py", line 1, in <module>
length0 = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s091008816 | p02389 | u324811972 | 1531363167 | Python | Python | py | Runtime Error | 0 | 0 | 116 | length0 = input()
length = length0.split()
a = length[0]
b = length[1]
area = a*b
per = 2*a+2*b
print(area," ",per)
| Traceback (most recent call last):
File "/tmp/tmpyhxlwtp1/tmp_rtt5lf5.py", line 1, in <module>
length0 = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s392593763 | p02389 | u324811972 | 1531363234 | Python | Python | py | Runtime Error | 0 | 0 | 126 | length0 = input()
length = length0.split()
a = length[0]
b = length[1]
area = a*b
per = 2*a+2*b
print(str(area)+" "+str(per))
| Traceback (most recent call last):
File "/tmp/tmp3x042ii7/tmplk8i_v4w.py", line 1, in <module>
length0 = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s644436300 | p02389 | u324811972 | 1531363262 | Python | Python | py | Runtime Error | 0 | 0 | 154 | length0 = input()
length = length0.split()
a = length[0]
b = length[1]
print(str(a)+" "+str(b))
#area = a*b
#per = 2*a+2*b
#print(str(area)+" "+str(per))
| Traceback (most recent call last):
File "/tmp/tmpfdj23w1s/tmpajf92pso.py", line 1, in <module>
length0 = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s516431359 | p02389 | u324811972 | 1531363286 | Python | Python | py | Runtime Error | 0 | 0 | 169 | length0 = input()
print(" ")
#length = length0.split()
#a = length[0]
#b = length[1]
#print(str(a)+" "+str(b))
#area = a*b
#per = 2*a+2*b
#print(str(area)+" "+str(per))
| Traceback (most recent call last):
File "/tmp/tmpr3n9xd3k/tmpm4heqnqf.py", line 1, in <module>
length0 = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s686222729 | p02389 | u324811972 | 1531363305 | Python | Python | py | Runtime Error | 0 | 0 | 173 | length0 = input()
print(length0)
#length = length0.split()
#a = length[0]
#b = length[1]
#print(str(a)+" "+str(b))
#area = a*b
#per = 2*a+2*b
#print(str(area)+" "+str(per))
| Traceback (most recent call last):
File "/tmp/tmpw32kmv18/tmpe7kcp5id.py", line 1, in <module>
length0 = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s055580965 | p02389 | u324811972 | 1531363491 | Python | Python | py | Runtime Error | 0 | 0 | 180 | length0 = input()
#print(length0)
length = length0.split()
a = int(length[0])
b = int(length[1])
print(str(a)+" "+str(b))
#area = a*b
#per = 2*a+2*b
#print(str(area)+" "+str(per))
| Traceback (most recent call last):
File "/tmp/tmp71kmmwi3/tmp3a97l6mq.py", line 1, in <module>
length0 = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s412015451 | p02389 | u324811972 | 1531363502 | Python | Python | py | Runtime Error | 0 | 0 | 178 | length0 = input()
#print(length0)
length = length0.split()
a = int(length[0])
b = int(length[1])
#print(str(a)+" "+str(b))
area = a*b
per = 2*a+2*b
print(str(area)+" "+str(per))
| Traceback (most recent call last):
File "/tmp/tmp_15eqmbn/tmp_hpxmks8.py", line 1, in <module>
length0 = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s212754349 | p02389 | u303952184 | 1531838743 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | list = int(input().split())
a = list[0]
b = list[1]
print (a*b + " " + 2*(a+b))
| Traceback (most recent call last):
File "/tmp/tmpgmncc0e4/tmp1ujy2ku5.py", line 1, in <module>
list = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s668473452 | p02389 | u303952184 | 1531839136 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a, b = map[int, input().split()]
print (a*b, 2*(a+b))
| Traceback (most recent call last):
File "/tmp/tmp7dwmokyf/tmp7y6vj1rb.py", line 1, in <module>
a, b = map[int, input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s936028026 | p02389 | u466526478 | 1534773458 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | input sys
a = sys.argv[1]
b = sys.argv[2]
menseki = a * b
syui = (a * 2) + (b * 2)
print(menseki, syui)
| File "/tmp/tmpw7y1q9qd/tmpa2jdqcbe.py", line 1
input sys
^^^
SyntaxError: invalid syntax
| |
s934366485 | p02389 | u466526478 | 1534773474 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | input sys
a = sys.argv[1]
b = sys.argv[2]
menseki = a * b
syui = (a * 2) + (b * 2)
print(int(menseki), int(syui))
| File "/tmp/tmp7ik64zqi/tmpq2x9idai.py", line 1
input sys
^^^
SyntaxError: invalid syntax
| |
s395178899 | p02389 | u466526478 | 1534773550 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | input sys
a = sys.argv[0]
b = sys.argv[1]
menseki = a * b
syui = (a * 2) + (b * 2)
print(int(menseki), int(syui))
| File "/tmp/tmptfzrkdqu/tmpbk7awp5l.py", line 1
input sys
^^^
SyntaxError: invalid syntax
| |
s522080136 | p02389 | u466526478 | 1534773576 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | input sys
a = sys.argv[0]
b = sys.argv[1]
menseki = a * b
syui = (a * 2) + (b * 2)
print(int(menseki)," "int(syui))
| File "/tmp/tmp0z0n6_wz/tmp_p8t3ndp.py", line 1
input sys
^^^
SyntaxError: invalid syntax
| |
s744816682 | p02389 | u466526478 | 1534773596 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | input sys
a = sys.argv[0]
b = sys.argv[1]
menseki = a * b
syui = (a * 2) + (b * 2)
print int(menseki)
print int(syui)
| File "/tmp/tmpwso13cd9/tmp0fa3r3gk.py", line 1
input sys
^^^
SyntaxError: invalid syntax
| |
s059806513 | p02389 | u466526478 | 1534773618 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | input sys
a = sys.argv[0]
b = sys.argv[1]
menseki = a * b
syui = (a * 2) + (b * 2)
print a * b
print (a * 2) + (b * 2)
| File "/tmp/tmps5cw4q3b/tmpv0m5gg2b.py", line 1
input sys
^^^
SyntaxError: invalid syntax
| |
s229360174 | p02389 | u466526478 | 1534773643 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | input sys
a = int(sys.argv[0])
b = int(sys.argv[1])
menseki = a * b
syui = (a * 2) + (b * 2)
print a * b
print (a * 2) + (b * 2)
| File "/tmp/tmp2cto7crp/tmp32wivwoy.py", line 1
input sys
^^^
SyntaxError: invalid syntax
| |
s806226762 | p02389 | u655879321 | 1534905519 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | A, B = map(int, input().sprit())
print(A*B,2*(A+B))
| Traceback (most recent call last):
File "/tmp/tmpnxgzbseg/tmpaeelnoou.py", line 1, in <module>
A, B = map(int, input().sprit())
^^^^^^^
EOFError: EOF when reading a line
| |
s462647898 | p02389 | u404682284 | 1534952260 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | package main
import (
"fmt"
)
func main(){
var a, b int
fmt.Scan(&a, &b)
fmt.Println(a*b, 2*(a+b))
}
| File "/tmp/tmpt0oo2bbs/tmpj5hu8q21.py", line 1
package main
^^^^
SyntaxError: invalid syntax
| |
s786674955 | p02389 | u260169299 | 1535141971 | Python | Python3 | py | Runtime Error | 0 | 0 | 245 | import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner input = new Scanner(System.in);
int a = input.nextInt();
int b = input.nextInt();
int p = a*2 + b*2;
int ar = a*b;
System.out.println(ar+" "+p);
}
}
| File "/tmp/tmpc3y8tmgj/tmp1c2g9qss.py", line 3
public class Main {
^^^^^
SyntaxError: invalid syntax
| |
s006983031 | p02389 | u928491417 | 1535424566 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | a, b = map(int, input().split())
print(a*b, 2a+2b)
| File "/tmp/tmp31pnlhtk/tmpvtxoc4p0.py", line 3
print(a*b, 2a+2b)
^
SyntaxError: invalid decimal literal
| |
s991335921 | p02389 | u580227385 | 1535445587 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a, b = map(int, input().splot())
print(str(a * b) + str(2 * a + 2 * b))
| Traceback (most recent call last):
File "/tmp/tmp2qp0l4vw/tmp36dtkc4v.py", line 1, in <module>
a, b = map(int, input().splot())
^^^^^^^
EOFError: EOF when reading a line
| |
s708891815 | p02389 | u085441951 | 1535631019 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | input = input()
a,b = input.split()
print(a * b, a*2 + b*2)
| Traceback (most recent call last):
File "/tmp/tmpbnlowp7q/tmpvh2mqmox.py", line 1, in <module>
input = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s858338720 | p02389 | u640181155 | 1535693641 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a = input()
b = input()
print("a * b 2(a + b)")
| Traceback (most recent call last):
File "/tmp/tmpdh0v8itv/tmpf8hcv_8c.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s837306997 | p02389 | u640181155 | 1535693946 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a,b = input(),split()
print("a * b 2(a + b)")
| Traceback (most recent call last):
File "/tmp/tmpvnn_hxlr/tmpd9h23hc7.py", line 1, in <module>
a,b = input(),split()
^^^^^^^
EOFError: EOF when reading a line
| |
s487778058 | p02389 | u640181155 | 1535693995 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a,b = input(),split()
a = int(a)
b = int(b)
print("a * b 2(a + b)")
| Traceback (most recent call last):
File "/tmp/tmpfvdq7whn/tmpsbpzerzn.py", line 1, in <module>
a,b = input(),split()
^^^^^^^
EOFError: EOF when reading a line
| |
s670351474 | p02389 | u640181155 | 1535694035 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a,b = input(),split()
c = int(a)
d = int(b)
print("c * d 2(c + d)")
| Traceback (most recent call last):
File "/tmp/tmpgbdkx4h5/tmply19hglv.py", line 1, in <module>
a,b = input(),split()
^^^^^^^
EOFError: EOF when reading a line
| |
s982251493 | p02389 | u640181155 | 1535694889 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a,b = input(),split()
c = int(a)
d = int(b)
print("c * d 2(c + d)")
| Traceback (most recent call last):
File "/tmp/tmp72t897sg/tmpm4tg3fqd.py", line 1, in <module>
a,b = input(),split()
^^^^^^^
EOFError: EOF when reading a line
| |
s765903404 | p02389 | u281808376 | 1540280266 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a_b=input().split()
print(int(a_b[0])*int(a_b[1]) int(a_b[0]*2+int(a_b[1]*2)))
| File "/tmp/tmp34va3u91/tmpriy9yfmk.py", line 2
print(int(a_b[0])*int(a_b[1]) int(a_b[0]*2+int(a_b[1]*2)))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s102670784 | p02389 | u281808376 | 1540280343 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a_b=input().split()
print(str(int(a_b[0])*int(a_b[1]))+" "+str(int(a_b[0]*2+int(a_b[1]*2))))
| Traceback (most recent call last):
File "/tmp/tmpommvvwf3/tmpumd02am3.py", line 1, in <module>
a_b=input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s582591754 | p02389 | u281808376 | 1540280413 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a_b=input().split()
a=int(a_b[0])
b=int(a_b[1])
print(a*b (a+b)*2)
| Traceback (most recent call last):
File "/tmp/tmp9ra6r_m0/tmpo4y_rph5.py", line 1, in <module>
a_b=input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s560581107 | p02389 | u112067694 | 1540372718 | Python | Python | py | Runtime Error | 0 | 0 | 35 | w = input()
h = input()
print(w*h)
| Traceback (most recent call last):
File "/tmp/tmpw8r2_2qz/tmp3y6sfia1.py", line 1, in <module>
w = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s462702816 | p02389 | u112067694 | 1540372739 | Python | Python | py | Runtime Error | 0 | 0 | 39 | w = input('')
h = input('')
print(w*h)
| Traceback (most recent call last):
File "/tmp/tmpy9c07ip6/tmppe4nw9np.py", line 1, in <module>
w = input('')
^^^^^^^^^
EOFError: EOF when reading a line
| |
s397582322 | p02389 | u112067694 | 1540372763 | Python | Python | py | Runtime Error | 0 | 0 | 28 | w, h = input('')
print(w*h)
| Traceback (most recent call last):
File "/tmp/tmplvslkel2/tmpui5z2w_k.py", line 1, in <module>
w, h = input('')
^^^^^^^^^
EOFError: EOF when reading a line
| |
s245393274 | p02389 | u112067694 | 1540372892 | Python | Python | py | Runtime Error | 0 | 0 | 74 | A, B = map(int, raw_input().split())
print(str(w*h) + ' ' + str((w+h)*2)
| File "/tmp/tmp55g3qb_e/tmp444xggsr.py", line 3
print(str(w*h) + ' ' + str((w+h)*2)
^
SyntaxError: '(' was never closed
| |
s629432751 | p02389 | u112067694 | 1540372900 | Python | Python | py | Runtime Error | 0 | 0 | 75 | A, B = map(int, raw_input().split())
print(str(w*h) + ' ' + str((w+h)*2))
| Traceback (most recent call last):
File "/tmp/tmpbhs8o94e/tmpq7if10ed.py", line 1, in <module>
A, B = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s128644657 | p02389 | u344368371 | 1540545368 | Python | Python | py | Runtime Error | 0 | 0 | 65 | a = input()
b = input()
S = a*b
L = 2*a+2*b
print(S)
print(L)
| Traceback (most recent call last):
File "/tmp/tmp5yuir3bk/tmpcpl6llzb.py", line 1, in <module>
a = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s574301172 | p02389 | u394290028 | 1540617670 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | x = int(input().rsplit(" "))
a = x[0] * x[1]
b = x[0] + x[1] + x[0] + x[1]
print(str(a) + str(b)
| File "/tmp/tmpa67c7evv/tmp15u3qj5f.py", line 4
print(str(a) + str(b)
^
SyntaxError: '(' was never closed
| |
s732487968 | p02389 | u394290028 | 1540617678 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | x = int(input().split(" "))
a = x[0] * x[1]
b = x[0] + x[1] + x[0] + x[1]
print(str(a) + str(b)
| File "/tmp/tmpig0bkra5/tmp0hw0o7it.py", line 4
print(str(a) + str(b)
^
SyntaxError: '(' was never closed
| |
s525009394 | p02389 | u394290028 | 1540617689 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | x = int(input().split(" "))
a = x[0] * x[1]
b = x[0] + x[1] + x[0] + x[1]
print(str(a) + str(b))
| Traceback (most recent call last):
File "/tmp/tmp42ft512z/tmp2uww37t2.py", line 1, in <module>
x = int(input().split(" "))
^^^^^^^
EOFError: EOF when reading a line
| |
s908580428 | p02389 | u637765482 | 1540738250 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | print(a*b)
print(2*(a+b))
| Traceback (most recent call last):
File "/tmp/tmprsluua4t/tmpkkd3ms24.py", line 1, in <module>
print(a*b)
^
NameError: name 'a' is not defined
| |
s208623247 | p02389 | u637765482 | 1540738303 | Python | Python3 | py | Runtime Error | 0 | 0 | 16 |
print(2*(a+b))
| Traceback (most recent call last):
File "/tmp/tmptwf81jis/tmpsoednspg.py", line 2, in <module>
print(2*(a+b))
^
NameError: name 'a' is not defined
| |
s420214136 | p02389 | u184749404 | 1540989902 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | a,b=int(input())
print((a+b)*2,a*b)
| Traceback (most recent call last):
File "/tmp/tmpvl3gmrke/tmpio7l5xhh.py", line 1, in <module>
a,b=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s752524024 | p02389 | u754514998 | 1541166620 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a, b = int(input(x) for x in input().split())
print((a+b)/2, (a+b)*2)
| Traceback (most recent call last):
File "/tmp/tmpuis08u7o/tmp31qd2ivu.py", line 1, in <module>
a, b = int(input(x) for x in input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s098313627 | p02389 | u754514998 | 1541166666 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a, b = int(input(x) for x in input().split())
print((a*b)/2, (a+b)*2)
| Traceback (most recent call last):
File "/tmp/tmprdeqtl8x/tmppn89fsb2.py", line 1, in <module>
a, b = int(input(x) for x in input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s467407323 | p02389 | u293957970 | 1541171360 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | number(a,b):
print(a*b,2*(a+b))
| File "/tmp/tmpm5duran3/tmpgc6_746o.py", line 1
number(a,b):
^
SyntaxError: invalid syntax
| |
s384906492 | p02389 | u293957970 | 1541171372 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | (a,b):
print(a*b,2*(a+b))
| File "/tmp/tmpz5cbbxx8/tmp9z5dduhd.py", line 1
(a,b):
^
SyntaxError: invalid syntax
| |
s993722871 | p02389 | u127984384 | 1541173134 | Python | Python | py | Runtime Error | 0 | 0 | 40 | a=input()
b=input()
print(a*b,2*a+2*b)
| Traceback (most recent call last):
File "/tmp/tmpdm9_d1lp/tmpcgigukwz.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s514946532 | p02389 | u127984384 | 1541173177 | Python | Python | py | Runtime Error | 0 | 0 | 40 | a=input()
b=input()
print(a*b,2*a+2*b)
| Traceback (most recent call last):
File "/tmp/tmpv18lnfz6/tmpwf64tzst.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s512636178 | p02389 | u127984384 | 1541173228 | Python | Python | py | Runtime Error | 0 | 0 | 39 | a=input()
b=input()
print a*b,2*a+2*b
| File "/tmp/tmpgi4qo00c/tmpnqmrg5mo.py", line 4
print a*b,2*a+2*b
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s104261299 | p02389 | u262004823 | 1541237918 | Python | Python | py | Runtime Error | 0 | 0 | 34 | a b=int(input())
print(a*b 2a+2b)
| File "/tmp/tmpei4wfuk5/tmpiat72hjr.py", line 2
print(a*b 2a+2b)
^
SyntaxError: invalid decimal literal
| |
s683307589 | p02389 | u262004823 | 1541244798 | Python | Python | py | Runtime Error | 0 | 0 | 89 | a, b = [int(x) for x in input().split(" ")]
print("{} {}".format(a * b, 2 * a + 2 * b))
| Traceback (most recent call last):
File "/tmp/tmp20m8_0k0/tmp2rhopwxn.py", line 1, in <module>
a, b = [int(x) for x in input().split(" ")]
^^^^^^^
EOFError: EOF when reading a line
| |
s844818085 | p02389 | u135987475 | 1545234766 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | line = input().split()
a = int(line[0])
b = int(line[1])
print(srt(a*b) + " " + str((a+b)*2))
| Traceback (most recent call last):
File "/tmp/tmpr_d08iuh/tmpqlvei_cx.py", line 1, in <module>
line = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s269341517 | p02389 | u668055645 | 1545264399 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | print((int(input())+int(input()))*2)
| Traceback (most recent call last):
File "/tmp/tmp6fe7pf_h/tmpjyylb_yh.py", line 1, in <module>
print((int(input())+int(input()))*2)
^^^^^^^
EOFError: EOF when reading a line
| |
s770276356 | p02389 | u266788078 | 1545313965 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | A,B = (int,map(input().split()))
print(A*B," ",2*(A+B))
| Traceback (most recent call last):
File "/tmp/tmpt6yac_q0/tmpcae77yce.py", line 1, in <module>
A,B = (int,map(input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s633996996 | p02389 | u266788078 | 1545313985 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | A,B = int,map(input().split())
print(A*B," ",2*(A+B))
| Traceback (most recent call last):
File "/tmp/tmp0oq4u5u6/tmpfn_l6_tn.py", line 1, in <module>
A,B = int,map(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s119345230 | p02389 | u638889288 | 1545571464 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | print(a*b)
print(2(a+b))
| /tmp/tmpsudcq7gf/tmpc3c4e2ox.py:2: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma?
print(2(a+b))
Traceback (most recent call last):
File "/tmp/tmpsudcq7gf/tmpc3c4e2ox.py", line 1, in <module>
print(a*b)
^
NameError: name 'a' is not defined
| |
s671834726 | p02389 | u638889288 | 1545571526 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | print(a*b 2(a+b))
| File "/tmp/tmp6vmtgnwv/tmpjixekc5h.py", line 1
print(a*b 2(a+b))
^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s108909706 | p02389 | u638889288 | 1545571738 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | a=int(input(''))
b=int(input(''))
pritn(a*b 2(a+b))
| File "/tmp/tmpm6j8dqy_/tmpey7z_bcl.py", line 3
pritn(a*b 2(a+b))
^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s994104382 | p02389 | u316246166 | 1545572797 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | a, b = int(input().split())
print(a*b
)
| Traceback (most recent call last):
File "/tmp/tmp7am3zojn/tmpyig_9_kz.py", line 1, in <module>
a, b = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s508154429 | p02389 | u316246166 | 1545572811 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | a, b = int(input().split())
print(a*b)
| Traceback (most recent call last):
File "/tmp/tmpygbwomdr/tmpzhd06gx4.py", line 1, in <module>
a, b = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s945761827 | p02389 | u962909487 | 1545811281 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | area= a + b
perimeter = a*b
print(area, perimeter)
| Traceback (most recent call last):
File "/tmp/tmpuok8n4is/tmp9rii1qdm.py", line 1, in <module>
area= a + b
^
NameError: name 'a' is not defined
| |
s344757607 | p02389 | u962909487 | 1545811333 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | area= a *b
perimeter = 2*(a+b)
print(area, perimeter)
| Traceback (most recent call last):
File "/tmp/tmpqa9csm09/tmp2oo8ff93.py", line 1, in <module>
area= a *b
^
NameError: name 'a' is not defined
| |
s637032349 | p02389 | u962909487 | 1545811798 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a,b = input().split()
area = a*b
perimeter = (a + b) * 2
print(area, perimeter)
| Traceback (most recent call last):
File "/tmp/tmp6jl6se_w/tmppy5_s6tu.py", line 1, in <module>
a,b = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s309551929 | p02389 | u962909487 | 1545811851 | Python | Python3 | py | Runtime Error | 0 | 0 | 42 | a,b = input().split()
print(a*b, (a+b)*2)
| Traceback (most recent call last):
File "/tmp/tmpw91z_sgi/tmp8tmm484c.py", line 1, in <module>
a,b = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s534062184 | p02389 | u962909487 | 1545811868 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b = int(input().split())
print(a*b, (a+b)*2)
| Traceback (most recent call last):
File "/tmp/tmpn8u52ix_/tmpou8j_jd4.py", line 1, in <module>
a,b = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s529280044 | p02389 | u962909487 | 1545811896 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a,b = (int,input().split())
print(a*b, (a+b)*2)
| Traceback (most recent call last):
File "/tmp/tmpaoubmw2p/tmpp5492bcm.py", line 1, in <module>
a,b = (int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s234559784 | p02389 | u643542669 | 1545833912 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a, b = int(input().split)
print(a*b, (a+b)*2)
| Traceback (most recent call last):
File "/tmp/tmpee4nwqdd/tmpifaulsf2.py", line 1, in <module>
a, b = int(input().split)
^^^^^^^
EOFError: EOF when reading a line
| |
s428362216 | p02389 | u643542669 | 1545833927 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a, b = int(input().split())
print(a*b, (a+b)*2)
| Traceback (most recent call last):
File "/tmp/tmpirmidazk/tmp8yk9ys9l.py", line 1, in <module>
a, b = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s757439985 | p02389 | u643542669 | 1545834100 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a = int(input().split())
print(a[1]*a[0], (a[1]+a[0])*2)
| Traceback (most recent call last):
File "/tmp/tmptzre_oji/tmpyb_gli4d.py", line 1, in <module>
a = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s367815270 | p02389 | u094410550 | 1545839824 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a=int(input())
b=int(input())
x=a*b
y=2*a+2*b
print(x)
print(y)
| Traceback (most recent call last):
File "/tmp/tmpeu2yugey/tmpb90cg5ii.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s274503073 | p02389 | u498462680 | 1546086350 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | a,b=input(),split(" ")
print(a+""+b)
| Traceback (most recent call last):
File "/tmp/tmpu9kb0usx/tmp07mgvzzy.py", line 1, in <module>
a,b=input(),split(" ")
^^^^^^^
EOFError: EOF when reading a line
| |
s290236776 | p02389 | u498462680 | 1546086372 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | a,b=input(),split(' ')
print(a+' '+b)
| Traceback (most recent call last):
File "/tmp/tmplnhvfcv0/tmpsws22cnn.py", line 1, in <module>
a,b=input(),split(' ')
^^^^^^^
EOFError: EOF when reading a line
| |
s918382876 | p02389 | u498462680 | 1546086584 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | a,b=input(),split()
print(a+' '+b)
| Traceback (most recent call last):
File "/tmp/tmpd7iawx7d/tmpw6nqqxdc.py", line 1, in <module>
a,b=input(),split()
^^^^^^^
EOFError: EOF when reading a line
| |
s227050267 | p02389 | u498462680 | 1546086609 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | a,b=input(),split()
print(a)
| Traceback (most recent call last):
File "/tmp/tmpchhky24r/tmp4sjgrsdc.py", line 1, in <module>
a,b=input(),split()
^^^^^^^
EOFError: EOF when reading a line
| |
s025302588 | p02389 | u498462680 | 1546086861 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a,b = input().split()
S = a*b
C = 2 * (a+b)
print(S + " " + C)
| Traceback (most recent call last):
File "/tmp/tmpii023l02/tmpncumnyxa.py", line 1, in <module>
a,b = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s649004098 | p02389 | u498462680 | 1546086874 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a,b = int(input().split())
S = a*b
C = 2 * (a+b)
print(S + " " + C)
| Traceback (most recent call last):
File "/tmp/tmpjh1rvsv6/tmpop_72_n4.py", line 1, in <module>
a,b = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s393766489 | p02389 | u498462680 | 1546086902 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a,b = input().split()
a = int(a)
b = int(b)
S = a*b
C = 2 * (a+b)
print(S + " " + C)
| Traceback (most recent call last):
File "/tmp/tmpfmbfw2dx/tmp0tla2_3n.py", line 1, in <module>
a,b = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s323622321 | p02389 | u697703458 | 1546239484 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a=input()
b=split()
d=list()
for c in b:
d.append(int(c))
print(d[0]*d[1],2*d[0]+2*d[1])
| Traceback (most recent call last):
File "/tmp/tmpb8xhwn6w/tmp0uho7h7c.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s560983138 | p02389 | u697703458 | 1546239526 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a=input()
b=split(a)
d=list()
for c in b:
d.append(int(c))
print(d[0]*d[1],2*d[0]+2*d[1])
| Traceback (most recent call last):
File "/tmp/tmpt1h3yf7p/tmp2oopdlir.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s654186171 | p02389 | u984892564 | 1551508807 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | def method(input()):
l = input().split(' ')
square = int.l[0] * int.l[1]
length = 2 * int.l[0] + 2* int.l[1]
print(square length)
method(input(3 5))
| File "/tmp/tmpwd7ad8jh/tmpwofmq6_g.py", line 1
def method(input()):
^
SyntaxError: invalid syntax
| |
s073191737 | p02389 | u984892564 | 1551508866 | Python | Python3 | py | Runtime Error | 0 | 0 | 166 | def method(input()):
l = input().split(' ')
square = int.l[0] * int.l[1]
length = 2 * int.l[0] + 2* int.l[1]
print(square length)
method(input(3 5))
| File "/tmp/tmp7y1wfs8b/tmpcqx925va.py", line 1
def method(input()):
^
SyntaxError: invalid syntax
| |
s778394436 | p02389 | u984892564 | 1551508958 | Python | Python3 | py | Runtime Error | 0 | 0 | 170 | def method(input()):
l = input().split(' ')
square = int(l[0]) * int(l[1])
length = 2 * int(l[0]) + 2* int(l[1])
print(square length)
method(input(3 5))
| File "/tmp/tmplree2vly/tmpa4_3tieg.py", line 1
def method(input()):
^
SyntaxError: invalid syntax
| |
s822267776 | p02389 | u984892564 | 1551509366 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a,b = map(list, input().split())
print(a*b, 2*(a+b))
| Traceback (most recent call last):
File "/tmp/tmpsyjeo32y/tmphp92nzbq.py", line 1, in <module>
a,b = map(list, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s213562025 | p02389 | u202430481 | 1551576395 | Python | Python | py | Runtime Error | 0 | 0 | 78 | a = int(input())
b = int(input())
c = a * b
d = 2 * (a + b)
print(c)
print(d)
| Traceback (most recent call last):
File "/tmp/tmp4ha2al21/tmpku8knby0.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s346580038 | p02389 | u202430481 | 1551576481 | Python | Python | py | Runtime Error | 0 | 0 | 72 | a = int(input())
b = int(input())
c = a * b
d = 2 * (a + b)
print(c,d)
| Traceback (most recent call last):
File "/tmp/tmpjlnx6794/tmpvjgwjx7h.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s344061463 | p02389 | u202430481 | 1551576501 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a = int(input())
b = int(input())
c = a * b
d = 2 * (a + b)
print(c,d)
| Traceback (most recent call last):
File "/tmp/tmplj_t626k/tmpm89wyzpt.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s882201343 | p02389 | u854556813 | 1551618700 | Python | Python | py | Runtime Error | 0 | 0 | 66 | l=input().split()
a=int(l[0])
b=int(l[1])
print(a*b)
print(2a+2b)
| File "/tmp/tmp13e3bu61/tmp2uqkrq0k.py", line 5
print(2a+2b)
^
SyntaxError: invalid decimal literal
| |
s723022450 | p02389 | u854556813 | 1551618830 | Python | Python | py | Runtime Error | 0 | 0 | 59 | l=input().split()
a=int(l[0])
b=int(l[1])
print(a*b,2a+2b)
| File "/tmp/tmpzbipe0_h/tmpfro48d4a.py", line 4
print(a*b,2a+2b)
^
SyntaxError: invalid decimal literal
| |
s780161859 | p02389 | u854556813 | 1551618849 | Python | Python | py | Runtime Error | 0 | 0 | 59 | l=input().split()
a=int(l[0])
b=int(l[1])
print(a*b 2a+2b)
| File "/tmp/tmp2q1d_yjo/tmppiphs04g.py", line 4
print(a*b 2a+2b)
^
SyntaxError: invalid decimal literal
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.