s_id stringlengths 10 10 | p_id stringlengths 6 6 | u_id stringlengths 10 10 | date stringlengths 10 10 | language stringclasses 1
value | original_language stringclasses 11
values | filename_ext stringclasses 1
value | status stringclasses 1
value | cpu_time stringlengths 1 5 | memory stringlengths 1 7 | code_size stringlengths 1 6 | code stringlengths 1 539k |
|---|---|---|---|---|---|---|---|---|---|---|---|
s660075493 | p02389 | u692329827 | 1461753302 | Python | Python | py | Runtime Error | 0 | 6268 | 130 | import sys
x = sys.stdin.readline()
y = list(x)
i = 2
del y[1]
del y[2]
y = map(int, y)
z = y[0]*y[1]
w = (y[0]+y[1])*2
print z, w |
s834261860 | p02389 | u617990214 | 1461753621 | Python | Python | py | Runtime Error | 0 | 0 | 9 | print a*b |
s181979770 | p02389 | u617990214 | 1461754937 | Python | Python | py | Runtime Error | 0 | 0 | 29 | a=input()
b=input()
print a*b |
s326931694 | p02389 | u617990214 | 1461755410 | Python | Python | py | Runtime Error | 0 | 0 | 72 | n=input()
N=n.split(" ")
a=int(N[0])
b=int(N[1])
print a*b
print (a+b)*2 |
s732246028 | p02389 | u617990214 | 1461755484 | Python | Python | py | Runtime Error | 0 | 0 | 76 | n=raw_input()
N=n.split(" ")
a=int(N[0])
b=int(N[1])
print a*b,print (a+b)*2 |
s765107221 | p02389 | u617990214 | 1461755494 | Python | Python | py | Runtime Error | 0 | 0 | 77 | n=raw_input()
N=n.split(" ")
a=int(N[0])
b=int(N[1])
print a*b ,print (a+b)*2 |
s281727565 | p02389 | u617990214 | 1461755513 | Python | Python | py | Runtime Error | 0 | 0 | 77 | n=raw_input()
k=n.split(" ")
a=int(k[0])
b=int(k[1])
print a*b ,print (a+b)*2 |
s502499082 | p02389 | u617990214 | 1461755568 | Python | Python | py | Runtime Error | 0 | 0 | 74 | n=input()
k=n.split(" ")
a=int(k[0])
b=int(k[1])
print a*b ,
print (a+b)*2 |
s030959190 | p02389 | u146647066 | 1462081834 | Python | Python | py | Runtime Error | 0 | 0 | 49 | a,b=map(int,raw_input().split()
print a*b,2*(a+b) |
s907880633 | p02389 | u192877548 | 1462111908 | Python | Python3 | py | Runtime Error | 30 | 7632 | 109 | # coding: utf-8
i = input()
menseki=int(i[0])*int(i[2])
nagasa=(int(i[0])+int(i[2]))*2
print(menseki,nagasa) |
s937846935 | p02389 | u999470575 | 1462177123 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | x = input()
y = input()
print((int(x) * 2 + int(y) * 2))
print((int(x) * int(y)) |
s816417920 | p02389 | u999470575 | 1462177195 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | x = input()
y = input()
print((int(x) * 2 + int(y) * 2))
print((int(x) * int(y)) |
s972989706 | p02389 | u999470575 | 1462177400 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | x = input()
y = input()
print(((int(x) + int(y)) * 2))
print((int(x) * int(y)) |
s088624889 | p02389 | u999470575 | 1462177473 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a = input()
b = input()
print(((int(a) + int(b)) * 2))
print((int(a) * int(b)) |
s070999293 | p02389 | u999470575 | 1462775660 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a = input()
b???= input()
print(int(a) * int(b))
print((int(a) * 2) + (int(b) * 2)) |
s407215840 | p02389 | u999470575 | 1462775782 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a = input()
b???= input()
print(int(a) * int(b))
print((int(a) * 2) + (int(b) * 2)) |
s625017867 | p02389 | u999470575 | 1462776061 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a = input()
b???= input()
print(int(a) * int(b)),((int(a) * 2) + (int(b) * 2)) |
s691981857 | p02389 | u999470575 | 1462776163 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a = input()
b???= input()
print(int(a) * int(b)),((int(a) * 2) + (int(b) * 2)) |
s571646523 | p02389 | u999470575 | 1462776661 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a,b = input( , )
print(int(a) * int(b)),((int(a) * 2) + (int(b) * 2)) |
s608283630 | p02389 | u999470575 | 1462776931 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a = input()
b = input()
print((int(a) * int(b)),8(int(a) * 2) + (int(b) * 2))) |
s296575622 | p02389 | u999470575 | 1462777073 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a = input()
b = input()
print((int(a) * int(b)),((int(a) * 2) + (int(b) * 2))) |
s550372205 | p02389 | u999470575 | 1462777444 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a = input()
b = input()
print((int(a) * int(b),(int(a) * 2) + (int(b) * 2))) |
s070638826 | p02389 | u182913399 | 1463030633 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | w, h = map(int, raw_input().split())
print w * h, w * 2 + h * 2 |
s246198007 | p02389 | u474983612 | 1463233856 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | x, y = [x for x in input().split()]
print(str(x * y) + ' ' + str(x * 2 + y * 2)) |
s184934813 | p02389 | u656153606 | 1463491417 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | a=input()
b=input()
print(a,b)
square=int(a)*int(b)
length=int(a)*2+int(b)*2
print(square,length) |
s040086539 | p02389 | u656153606 | 1463491639 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | a=input()
b=input()
print(a,b)
square=int(a)*int(b)
length=int(a)*2+int(b)*2
print(square,length) |
s586632644 | p02389 | u656153606 | 1463491929 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a=input()
b=input()
square=int(a)*int(b)
length=int(a)*2+int(b)*2
print(square,length) |
s588301226 | p02389 | u656153606 | 1463492101 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a=input()
b=input()
square=int(a)*int(b)
length=int(a)*2+int(b)*2
print(square),
print(length) |
s460427085 | p02389 | u656153606 | 1463492472 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | a=input()
b=input()
square=int(a)*int(b)
length=int(a)*2+int(b)*2
#print(square),
#print(length)
print(square,length) |
s422858430 | p02389 | u196669489 | 1463552188 | Python | Python | py | Runtime Error | 0 | 0 | 62 | x = input()
y = input()
a = x*y
b = 2*x+2*y
print a
print b |
s698297933 | p02389 | u104931506 | 1463701468 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a = int(input())
b = int(input())
print(a*b)
print(2*a+2*b) |
s163882511 | p02389 | u070968430 | 1463887346 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | data = int(input().split())
a = data[0]
b = data[1]
print(a * b, end = " ")
print(a* 2 + b * 2, end = "\n") |
s772708952 | p02389 | u305878853 | 1464005881 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print (a*b) |
s751386253 | p02389 | u305878853 | 1464006038 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a = int(input())
b = int(input())
print (a*b)
print(a+a+b+b) |
s597018255 | p02389 | u305878853 | 1464006340 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | a = input()
b = a.split(' ')
c = b[0]
d = b[1]
cint = int(c)
dint = int(d)
ans = cint * dint
ans
ans2 = cint + cin?? + dint + dint
ans2 |
s716967801 | p02389 | u177370127 | 1464759822 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a = int(input())
b = int(input())
s = (a + b) * 2
m = a * b
print(m, s) |
s132913465 | p02389 | u177370127 | 1464759858 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a = int(input())
b = int(input())
s = int((a + b) * 2)
m = int(a * b)
print(m, s) |
s081323455 | p02389 | u496999590 | 1464835580 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a,b=map(int,input().split())
print(a*b,2*a+2*b); |
s890006638 | p02389 | u444997287 | 1465458556 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a = int(input())
b = int(input())
print(a * b)
print(a*2 + b*2) |
s638241935 | p02389 | u734072322 | 1465527753 | Python | Python | py | Runtime Error | 0 | 0 | 81 | n = raw_input()
a = n.split()
b = a[0] * a[1]
c = (a[0] + a[1]) * 2
print b c |
s541169014 | p02389 | u734072322 | 1465528480 | Python | Python | py | Runtime Error | 0 | 0 | 83 | n = raw_input()
a = n.split()
b = a[0] * a[1]
c = (a[0] + a[1]) * 2
print b , c |
s168003777 | p02389 | u734072322 | 1465528774 | Python | Python | py | Runtime Error | 0 | 0 | 88 | n = raw_input()
a = int(n.split())
b = a[0] * a[1]
c = (a[0] + a[1]) * 2
print b , c |
s399750319 | p02389 | u269653912 | 1466017333 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | a, b = map(int, input().split())
def S:
return a*b
return 2*(a+b)
print S |
s305949375 | p02389 | u269653912 | 1466017527 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a,b = list(map(int, input().split()))
print(a*b, 2(a+b)) |
s799213875 | p02389 | u269653912 | 1466017552 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a,b = list(map(int, input().split()))
print(a*b, 2(a+b)) |
s307381290 | p02389 | u269653912 | 1466017599 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a,b = list(map(int, input().split()))
print(a*b, 2(a+b)) |
s048609026 | p02389 | u565781955 | 1466521566 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | a,b = int(input().split())
print( a*b , 2 * (a+b) ) |
s915877274 | p02389 | u350997408 | 1467019319 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | # coding: utf-8
a = int(input())
b = int(input())
menseki = a * b
print(menseki, a*2 + b*2) |
s707337008 | p02389 | u479110133 | 1468038322 | Python | Python | py | Runtime Error | 0 | 0 | 57 | a = int(input())
b = int(input())
print(a*b, 2 * (a + b)) |
s569847031 | p02389 | u162598098 | 1469104273 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a=(input())
b=float(input())
print(a*b,2*(a+b)) |
s155430845 | p02389 | u162598098 | 1469104300 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a=(input())
b=float(input())
print(a*b 2*(a+b)) |
s032722979 | p02389 | u162598098 | 1469104321 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a=(input())
b=float(input())
print(a*b)
print(2*(a+b)) |
s619794412 | p02389 | u626838615 | 1469156068 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | a,b = list(map(int,input().split(" "))
print(a*b,a*2+b*2) |
s471138087 | p02389 | u169013892 | 1469326004 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | #coding: utf-8
line=input()
lines=line.split(" ")
a=lines[0]
b=lines[1]
print ((a+b)*2+" "+(a*b)) |
s529521249 | p02389 | u169013892 | 1469326170 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | #coding: utf-8
line=input()
lines=line.split(" ")
a=lines[0]
b=lines[1]
print ("%s %s",(a+b)*2,a*b) |
s869982801 | p02389 | u612243550 | 1469373555 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | a, b = map(int, input().split(' '))
print( a * b, 2a + 2b) |
s361791701 | p02389 | u587193722 | 1469511187 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | ab = input().split()
print(ab[0]*ab[1]) |
s466605684 | p02389 | u498041957 | 1469511362 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a, b = [input(i) for i in input().split()]
print(a, b) |
s466478443 | p02389 | u644636020 | 1469511447 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a, b = [int(i) for i in input().split()]
print(a, b)javascript:void(0) |
s798872588 | p02389 | u204883389 | 1469511652 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a, b = [int(i) for i in input(),split()]
print(a * b, (a + b) * 2) |
s545816538 | p02389 | u671553883 | 1469511758 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a, b = [int(i) for i in input().split]
print(a * b, (a + b) * 2) |
s104460062 | p02389 | u671553883 | 1469511839 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a, b = [int(i) for i in input().split]
print(a * b, (a + b) * 2) |
s380728055 | p02389 | u514745787 | 1469511907 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a, b = [int(i) for i in input().split()]
a = int(ab[0])
b = int(ab[1])
print(a*b, (a+b)*2) |
s557593576 | p02389 | u514745787 | 1469511937 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a, b = input().split()
a = int(ab[0])
b = int(ab[1])
print(a*b, (a+b)*2) |
s388829398 | p02389 | u661284763 | 1469512022 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | a,b = [int(i) for i in input().split()]
print(a * b,(a + b) * 2)) |
s346111835 | p02389 | u216425054 | 1470496571 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | (a,b)=map(int(),input().split())
print(a*b,(a+b)*2) |
s604454309 | p02389 | u216425054 | 1470497102 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | [a,b]=map(int,raw_input().split())
print(a*b,(a+b)*2) |
s774217328 | p02389 | u216425054 | 1470497174 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | a,b=map(int,raw_input().split())
print(a*b,(a+b)*2) |
s528355718 | p02389 | u216425054 | 1470497192 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a,b=map(int,raw_input().split())
print a*b,(a+b)*2 |
s856583769 | p02389 | u216425054 | 1470497225 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a,b=map(int,input().split())
print a*b,(a+b)*2 |
s706703257 | p02389 | u216425054 | 1470497302 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | [a,b]=map(int,input().split())
print(a*b,(a+b)*) |
s316043191 | p02389 | u270685394 | 1470542091 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | a,b = int(input())
print(a * b) |
s384618623 | p02389 | u270685394 | 1470542221 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a, b = int(input())
print(a*b)
print(2*(a*b)) |
s505245253 | p02389 | u270685394 | 1470542292 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | a, b = int(input())
print(a * b)
print(2 * (a + b)) |
s825567970 | p02389 | u270685394 | 1470542528 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a, b = int(input().split())
print(a * b)
print(2 * (a + b)) |
s270816664 | p02389 | u270685394 | 1470542569 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a, b = int(input().split())
print(a * b)
print(2 * (a + b)) |
s277208351 | p02389 | u270685394 | 1470542760 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a, b = int(input().split())
print(a * b)
print(2 * (a + b)) |
s784126010 | p02389 | u270685394 | 1470542785 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a, b = int(input().solit())
print(a * b)
print(2 * (a + b)) |
s807797421 | p02389 | u270685394 | 1470712265 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a,b = int(input().split())
print(a * b)
print(2 * a + b) |
s101463247 | p02389 | u270685394 | 1470712352 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a,b = int(input().split())
print(a * b)
print(2 * (a + b)) |
s375632896 | p02389 | u998435601 | 1470850376 | Python | Python | py | Runtime Error | 0 | 0 | 96 | line = raw_input()
a = line.split(" ")
s = a[0] * a[1]
len = 2 * s
print str(s) + " " + str(len) |
s961888750 | p02389 | u998435601 | 1470850500 | Python | Python | py | Runtime Error | 0 | 0 | 108 | line = raw_input()
a = line.split(" ")
s = a[0] * a[1]
len = 2 * (a[0] + a[1])
print str(s) + " " + str(len) |
s629939806 | p02389 | u998435601 | 1470850770 | Python | Python | py | Runtime Error | 0 | 0 | 105 | line = raw_input()
a = line.split()
s = a[0] * a[1]
len = 2 * (a[0] + a[1])
print str(s) + " " + str(len) |
s570929969 | p02389 | u652525711 | 1470914443 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | input_lines = input().split(" ")
a = int(input_liens[0])
b = int(input_liens[1])
print(a * b + " " + a * 2 + b * 2) |
s375415703 | p02389 | u655138261 | 1471444423 | Python | Python | py | Runtime Error | 0 | 0 | 75 | #coding:utf-8
a = input()
b = input()
print (str(a*b) + " " + str(2*a+2*b)) |
s923636841 | p02389 | u655138261 | 1471444530 | Python | Python | py | Runtime Error | 0 | 0 | 56 | #coding:utf-8
a = input()
b = input()
print a*b, 2*a+2*b |
s469881263 | p02389 | u788795188 | 1471682121 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | x=int(input())
y=int(input())
print(x*y end=""2*(x*y)) |
s101134889 | p02389 | u231136358 | 1471769796 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a = [int(item) for item in input().split()]
print(2*(a[0]+a[1]) + " " + a[0]*a[1]) |
s908346511 | p02389 | u047093194 | 1473168204 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | x = list(map(int,input().split()))
print(x[0]*x[1] x[0]*2+x[1]*2) |
s422448514 | p02389 | u047093194 | 1473168286 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | x = list(map(int,input().split()))
print(x[0]*x[1] x[0]*2+x[1]*2) |
s299365543 | p02389 | u362094064 | 1473316968 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | x = input().split()
y = map(int, x)
a = y[0]
b = y[1]
c = a*b
d = (a+b)*2
print ("c, d") |
s703786341 | p02389 | u302561071 | 1473478054 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a = map(int,raw_input().split())
print(a[0]*a[1])
print(" ")
print(a[0]*2 + a[1]*2) |
s420002126 | p02389 | u822442916 | 1474032817 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | (a,b)=(int(),int())
x=a*b
y=(a+b)*2
print(x y) |
s640981231 | p02389 | u822442916 | 1474035455 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b=map(int input().split())
print(a*b (a+b)*2) |
s877580700 | p02389 | u822442916 | 1474035532 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b=map(int,input().split())
print(a*b (a+b)*2) |
s425360068 | p02389 | u822442916 | 1474035699 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b=map(int,input().split())
print(a*b (a+b)*2) |
s743934228 | p02389 | u822442916 | 1474035806 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | a,b=map(int,input())
print(a*b (a+b)*2) |
s365888358 | p02389 | u648470099 | 1474190011 | Python | Python | py | Runtime Error | 0 | 0 | 49 | x,y=map(int, input().split())
a=int(x*y)
print(a) |
s246410112 | p02389 | u822442916 | 1474197086 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a,b=map(int,input().split(''))
print(a*b 2*a+2*b) |
s183018592 | p02389 | u822442916 | 1474197128 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | (a,b)=map(int,input().split(''))
print(a*b 2*a+2*b) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.