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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s037344432 | p02389 | u922695161 | 1491822824 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | import sys
x, y = sys.stdin()
z=x*y
a=(x+y)*2
print(z,a) |
s868034905 | p02389 | u619570677 | 1492093585 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | a = input()
b = input()
area = int(a) * int(b)
length = 2 * int(a) + 2 * int(b)
print(area length) |
s698836346 | p02389 | u619570677 | 1492093661 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | a = input()
b = input()
area = int(a) * int(b)
length = 2 * int(a) + 2 * int(b)
print(area length) |
s533868905 | p02389 | u619570677 | 1492178829 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a = int(input())
b = int(input())
area = a * b
length = 2* a + 2 * b
print(area length) |
s693150125 | p02389 | u619570677 | 1492178990 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a,b = list(map(int, input().split()))
area = a*b
length = 2 * (a + b)
print(area length) |
s712840596 | p02389 | u619570677 | 1492179346 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | a.b = list(map(int,input().split()))
area = a * b
length = 2 * (a + b)
print(area,end=" ")
print(length) |
s968950250 | p02389 | u730249105 | 1492221323 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | ab=input().split(" ")
a=ab[1]
b=ab[2]
s=a*b
l=(a+b)*2
print(str(s)+" "+str(l)) |
s860696508 | p02389 | u956740383 | 1492227860 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a=input.split()
print(int(a[0])*int(a[1])+" "+2*(int(a[0])+int(a[1]))) |
s437914182 | p02389 | u956740383 | 1492228072 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a=input().split()
b=int(a[0])*int(a[1])
c=(int(a[0])+int(a[1]))*2
print(b+" "+c) |
s987541653 | p02389 | u111398151 | 1492441522 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | a , b = map(int(), input().split)
print(a*b a*2+b*2) |
s086177351 | p02389 | u111398151 | 1492441597 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a,b=map(int, input(),split)
print(a*b , a*2+b*2) |
s321840596 | p02389 | u628279257 | 1492592504 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a,b=int(split(input()))
x=a:b
y=2*a+2*b
print(x,y) |
s722282999 | p02389 | u628279257 | 1492592561 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a,b=int(split(input()))
x=a+b
y=2*a+2*b
print(x,y) |
s270596185 | p02389 | u628279257 | 1492592606 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | s=int(split(input()))
a=s[0]
b=s[1]
x=a+b
y=2*a+2*b
print(x,y) |
s544607108 | p02389 | u628279257 | 1492592624 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | s=int(split(input()))
a=s[0]
b=s[1]
x=a*b
y=2*a+2*b
print(x,y) |
s353670692 | p02389 | u628279257 | 1492592665 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | s=split(input())
a=int(s[0])
b=int(s[1])
x=a*b
y=2*a+2*b
print(x,y) |
s188447341 | p02389 | u628279257 | 1492592766 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | s=split(input())
a=int(s[0])
b=int(s[1])
x=a*b
y=2*(a+b)
print(x,y) |
s849669516 | p02389 | u556326323 | 1492650835 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | a,b = map(int, input().split())
print(str(a*b) + ' ' + (a+b) * 2) |
s100383055 | p02389 | u217701374 | 1492879129 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a,b = map(int,input().split())
print(a*b (a*2)+(b*2)) |
s080765302 | p02389 | u772010071 | 1493110974 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | x, y = input()
print(x * y + " " + 2*x + 2*y) |
s952409895 | p02389 | u772010071 | 1493111141 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | a, b = list(map(int, split.()))
print(a*b, 2*(a+b)) |
s912916829 | p02389 | u419755872 | 1493473035 | Python | Python | py | Runtime Error | 0 | 0 | 99 | #coding:UTF-8
s = input().split()
a = int(s[0])
b = int(s[1])
cir = a+b
area = a*b
print (cir,area) |
s030925853 | p02389 | u419755872 | 1493473133 | Python | Python | py | Runtime Error | 0 | 0 | 99 | #coding:UTF-8
s = input().split()
a = int(s[0])
b = int(s[1])
cir = a+b
area = a*b
print (cir,area) |
s233025850 | p02389 | u419755872 | 1493473234 | Python | Python | py | Runtime Error | 0 | 0 | 107 | #coding:UTF-8
s = input().split()
cir = 2*(int(s[0])+int(s[1]))
area = int(s[0])*int(s[1])
print (area,cir) |
s429962924 | p02389 | u156182935 | 1493619651 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | i = int(input()).split(" ")
print((i[0]*i[1]) + " " + (i[0]*2+i[1]*2)) |
s811462678 | p02389 | u156182935 | 1493619742 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | i = int(input()).split(" ")
print((i[0]*i[1]) + " " + (i[0]*2+i[1]*2)) |
s405146802 | p02389 | u213265973 | 1493711119 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | a,b = input( , )
print(2*a + 2* b, a*b) |
s077464551 | p02389 | u213265973 | 1493711199 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | a,b = input( , )
print(2*a+2*b,a*b) |
s522409509 | p02389 | u286033857 | 1493899160 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | a = int(input())
b = int(input())
print(str(a*b) + " " + str((a + b) * 2)) |
s399660104 | p02389 | u213265973 | 1493957958 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | def f(a b)
return a*b 2*a+ 2*b |
s962752283 | p02389 | u213265973 | 1493958164 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | a b = input()
print(a*b 2*(a+b)) |
s756028296 | p02389 | u213265973 | 1493958276 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | a, b = input(,)
print(a*b,2*(a+b)) |
s324528488 | p02389 | u648117624 | 1493995077 | Python | Python | py | Runtime Error | 0 | 0 | 63 | a = input()
b = input()
s = a * b
l = (a + b) *2
print (s, l) |
s814074388 | p02389 | u213265973 | 1494026934 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | a,b = int(input())
print(a*b, 2*(a+b)) |
s606451536 | p02389 | u213265973 | 1494027304 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | list = (input(.split(" "))
a = int(list[0])
b = int(list[1])
print(a*b, 2*(a+b)) |
s936777643 | p02389 | u003181964 | 1494218665 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | import math
data = input()
data1 = input()
data = int(data)
data = int(data1)
print (data * data1," ",data*2 + data1*2) |
s208753105 | p02389 | u003181964 | 1494219283 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | import math
data = input()
data1 = input()
data = int(data)
data1 = int(data1)
print (data * data1," ",data*2 + data1*2) |
s099006812 | p02389 | u576398884 | 1494241846 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | ab = input().split()
print ab[0] * ab[1], (ab[0] + ab[1]) * 2 |
s015766251 | p02389 | u576398884 | 1494241933 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | ab = input().split()
c = ab[0] * ab[1]
d = ab[0]*2 + ab[1]*2
print c, d |
s866901180 | p02389 | u576398884 | 1494241971 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | ab = raw_input().split()
c = ab[0] * ab[1]
d = ab[0]*2 + ab[1]*2
print c, d |
s860526357 | p02389 | u576398884 | 1494242166 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | ab = map(int, raw_input().split())
c = ab[0] * ab[1]
d = ab[0]*2 + ab[1]*2
print c, d |
s252644396 | p02389 | u576398884 | 1494242206 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | ab = raw_input().split()
map(int, ab)
c = ab[0] * ab[1]
d = ab[0]*2 + ab[1]*2
print c, d |
s645236351 | p02389 | u576398884 | 1494242216 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | ab = raw_input().split()
ab = map(int,ab)
c = ab[0] * ab[1]
d = ab[0]*2 + ab[1]*2
print c, d |
s936577625 | p02389 | u576398884 | 1494244105 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | ab = map(int, raw_input().split())
c = ab[0] * ab[1]
d = ab[0]*2 + ab[1]*2
print c, d |
s949831005 | p02389 | u688488162 | 1494390533 | Python | Python | py | Runtime Error | 0 | 0 | 61 | a = input()
b = input()
print('{0} {1}'.format(a*b,2*(a+b))) |
s401069182 | p02389 | u884012707 | 1494997657 | Python | Python3 | py | Runtime Error | 0 | 0 | 44 | a,b=map(int, raw_input().split())
print(a*b) |
s358143616 | p02389 | u686209982 | 1495083382 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | x = input()
x = x.split()
x[0] = int(x[0])
x[1] = int(x[1])
print(x[0]*x[1],x[0]*2+x[1]*2) |
s351915342 | p02389 | u580508010 | 1495200463 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | b=input()
e= b.find(" ")
c= int(b[:e-1])
d= int(b[e+1:])
f= c*d
g= c+c+d+d
print ( f + " " + g ) |
s453179255 | p02389 | u603049633 | 1495499985 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | x,y = map(int, input()split())
S = X * y
L = 2 * (x + y)
print(S + " " + L) |
s586790460 | p02389 | u603049633 | 1495500763 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | x,y = map(int, input().split())
S = X * y
L = 2 * (x + y)
print(S + " " + L)
|
s518706958 | p02389 | u714141025 | 1495671421 | Python | Python3 | py | Runtime Error | 0 | 0 | 42 | a=int(input().split(" "))
print(a[0]*a[1]) |
s330241254 | p02389 | u922489088 | 1495789275 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | import sys
a,b = sys.stdin.readline().rstrip().strip(' ')
print(int(a)*int(b)) |
s948189450 | p02389 | u922489088 | 1495789573 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | import sys
a,b = map(int, sys.stdin.readline().rstrip().split(' '))
print("{} {}".format(a*b, (a+b)*2) |
s823788248 | p02389 | u999594662 | 1496063423 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a=int(input())
b=int(input())
area=a*b
shu=2(a+b)
print(area, shu) |
s953658570 | p02389 | u167404994 | 1496141693 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a = int(input())
b = int(input())
print(a * b) |
s839982640 | p02389 | u025362139 | 1496651294 | Python | Python | py | Runtime Error | 0 | 0 | 41 | l = raw_input().split()
print l[0] * l[1] |
s482867918 | p02389 | u025362139 | 1496651346 | Python | Python | py | Runtime Error | 0 | 0 | 39 | l = raw_input().split()
print l[0]*l[1] |
s921320531 | p02389 | u025362139 | 1496651478 | Python | Python | py | Runtime Error | 0 | 0 | 54 | l = raw_input().split()
print l[0]*l[1], 2*l[0]+2*l[1] |
s139028106 | p02389 | u216229195 | 1496756289 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | list = input().split()
print(list[0]*list[1], list[0]*2+list[1]*2) |
s532671751 | p02389 | u675844759 | 1496796347 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | a, b = [int(i) for i in input().split()]
area = a * b
perimeter = 2 * (a + b)
print(area + " " + perimeter) |
s375428041 | p02389 | u675844759 | 1496796370 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | a, b = [int(i) for i in input().split()]
area = a * b
perimeter = 2 * (a + b)
print(area & " " & perimeter) |
s809546669 | p02389 | u100370736 | 1496806102 | Python | Python | py | Runtime Error | 0 | 0 | 47 | a=input(); b=input();
print a*b; print a*2+b*2; |
s965792225 | p02389 | u100370736 | 1496806145 | Python | Python | py | Runtime Error | 0 | 0 | 43 | a=input()
b=input()
print a*b
print a*2+b*2 |
s036902284 | p02389 | u239524997 | 1497159294 | Python | Python | py | Runtime Error | 0 | 0 | 18 | print(a*b,2*a+2*b) |
s443574071 | p02389 | u239524997 | 1497160436 | Python | Python | py | Runtime Error | 0 | 0 | 56 | a=0
b=0
a=int(input())
b=int(input())
print(a*b,2*(a+b)) |
s678699121 | p02389 | u239524997 | 1497160710 | Python | Python | py | Runtime Error | 0 | 0 | 65 | a=0
b=0
list = input()
a = list[0]
b = list[2]
print(a*b,2*(a+b)) |
s056291829 | p02389 | u239524997 | 1497160807 | Python | Python | py | Runtime Error | 0 | 0 | 75 | a=0
b=0
list = input()
a = int(list[0])
b = int(list[2])
print(a*b,2*(a+b)) |
s124555496 | p02389 | u239524997 | 1497162817 | Python | Python | py | Runtime Error | 0 | 0 | 42 | a = input()
b = input()
print(a*b,2*(a+b)) |
s029109256 | p02389 | u580737984 | 1497506171 | Python | Python3 | py | Runtime Error | 0 | 0 | 198 | i = j = 0
n = ''
m = ''
line = input()
while line[i] != ' ':
n = n + line[i]
i += 1
while i < len(line):
m = m + line[i]
i += 1
n = int(n)
m = int(m)
print(n*m 2*n+2*m) |
s909354108 | p02389 | u658089986 | 1497506396 | Python | Python3 | py | Runtime Error | 30 | 7656 | 57 | x= input()
a = int(x[0])
b = int(x[2])
print(a*b,a*2+b*2) |
s025796704 | p02389 | u721221949 | 1497506440 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | [a, b] = [int(input()) for _ in range(2)]
print(a*b + " " + (a+b)*2) |
s601693876 | p02389 | u658089986 | 1497506494 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | x= input()
a = int(x[0])
b = int(x[2])
print(a*b)end
print(a*2+b*2) |
s229663148 | p02389 | u721221949 | 1497506534 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | [a, b] = [int(input()) for _ in range(2)]
print((a*b) + " " + (a+b)*2) |
s361298096 | p02389 | u623827446 | 1497506626 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | str = input()
a = str[0]
b = str[2]
print(a*b, end='')
print((a+b)*2) |
s393995171 | p02389 | u658089986 | 1497506762 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | x= input()
a = int(x[0])
b = int(x[1])
print(a*b)end
print(a*2+b*2) |
s351870274 | p02389 | u486972540 | 1497506767 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a = int(input())
b = int(input())
print(a * b)
print(a ** 2 + b ** 2) |
s369439827 | p02389 | u569585396 | 1497506772 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a = int(input())
b = int(input())
print('a' + ' ' + 'b') |
s277555549 | p02389 | u486972540 | 1497506847 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a=int(input())
b=int(input())
print(a*b)
print(a*2+b*2) |
s273752984 | p02389 | u721103753 | 1497506849 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a = input()
b = input()
print(int(a) * int(b)) |
s288329945 | p02389 | u658089986 | 1497506901 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | x= input()
a = int(x[0])
b = int(x[1])
print(a*b,end=' ')
print(a*2+b*2) |
s965335147 | p02389 | u410114382 | 1497506917 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a = int(input())
b = int(input())
print(a*b)and(2*a+2*b) |
s593127392 | p02389 | u478810373 | 1497506937 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a = int(input())
b = int(input())
print(a*b)
print((a+b)*2) |
s726675979 | p02389 | u333596716 | 1497506940 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a = int(input())
b = int(input())
print a*b
print (a*2)+(b*2) |
s163511809 | p02389 | u569585396 | 1497506945 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | (a, b) = int(input())
print("a" + " " + "b") |
s480706710 | p02389 | u410114382 | 1497506956 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a = int(input())
b = int(input())
print(a*b)
print(2*a+2*b) |
s991805265 | p02389 | u323082382 | 1497506960 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a = int(input())
b = int(input())
mennseki = a*b
mawari = (a*2)+(b*2)
print(mennseki,mawari) |
s961288837 | p02389 | u323082382 | 1497507001 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a = int(input())
b = int(input())
mennseki = a*b
mawari = (a*2)+(b*2)
print(mennseki mawari) |
s090521017 | p02389 | u721103753 | 1497507008 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a = input()
b = input()
print(int(a) * int(b))
print((sum(int(a),int(b)) * 2) |
s603175221 | p02389 | u721221949 | 1497507014 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | [a, b] = [int(_) for _ in input().split()]
print(a*b + " " + (a+b)*2) |
s256417663 | p02389 | u027278270 | 1497507063 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a = int(input())
b = int(input())
c = a*b
d = c+1
print(c,d) |
s265781626 | p02389 | u363648401 | 1497507066 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a =int(input())
b =int(input())
print (a*b)
print ((a*2) + (b*2)) |
s422910621 | p02389 | u169794024 | 1497507083 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a=int(input())
b=int(input())
print((a*2)+(b*2))
print(a*b) |
s137317158 | p02389 | u323082382 | 1497507126 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | a,b = map(int,input().split())
c = a*b
d = a*2 + b*2
print(c d) |
s616293119 | p02389 | u169794024 | 1497507152 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | a,b=int(input())
print(a*b)
print(a*2+b*2) |
s179719336 | p02389 | u721103753 | 1497507158 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a = input()
b = input()
print(int(a) * int(b))
print(int(a) * 2 + int(b) * 2) |
s658038686 | p02389 | u658089986 | 1497507185 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | x=input()
x = x.split()
a = x[0]
b = x[1]
print(a*b,end=' ')
print(a*2+b*2) |
s935361412 | p02389 | u569585396 | 1497507190 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | a = int(input())
b = int(input())
print("a * b" + " " + "a * 2 + b * 2") |
s221184284 | p02389 | u323082382 | 1497507197 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a,b = map(int,input().split())
c = a*b
d = a*2 + b*2
print(c)print(d) |
s706737628 | p02389 | u433181015 | 1497507219 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | a,b = int(input().split())
area = a*b
mawari_length = (a+b)*2
print(area,mawari_length) |
s474919262 | p02389 | u721221949 | 1497507250 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | [a, b] = [int(_) for _ in input().split()]
print(a*b + " " + (a+b)*2) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.