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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s803853116 | p02389 | u166841004 | 1524549482 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | a=input(a b)
print(a*b)
print(a*2+b*2)
|
s554416976 | p02389 | u166841004 | 1524549494 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | a=input(a,b)
print(a*b)
print(a*2+b*2)
|
s986924602 | p02389 | u166841004 | 1524549528 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | a,b=input()
print(a*b)
print(a*2+b*2)
|
s836486463 | p02389 | u166841004 | 1524549907 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a,b=[input().split(' ')]
print(int(a)*int(b))
print(int(a)*2+int(b)*2)
|
s962045459 | p02389 | u166841004 | 1524549917 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a,b=[input().split('')]
print(int(a)*int(b))
print(int(a)*2+int(b)*2)
|
s251038016 | p02389 | u702242181 | 1524621605 | Python | Python | py | Runtime Error | 0 | 0 | 84 | #coding:UTF-8
a = input()
b = input()
x=a*b
y=2*(a+b)
print int(x)
print int(y)
|
s915484310 | p02389 | u884342371 | 1524796262 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | a, b = map(int, input())
print(a*b)
|
s280672491 | p02389 | u884342371 | 1524796298 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a, b = map(int, input())
print(a*b, 2*a+2*b)
|
s675395616 | p02389 | u836133197 | 1524838155 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | #include <stdio.h>
int main()
{
int a, b;
scanf("%d%d", &a, &b);
printf("%d %d\n", a*b, 2*a+2*b);
return 0;
}
|
s588474413 | p02389 | u500257793 | 1525421921 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a=int(input())
b=int(input())
print(f"{a*b} {(a+b)*2}")
|
s133169498 | p02389 | u500257793 | 1525421970 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a=int(input())
b=int(input())
print(a*b (a+b)*2)
|
s676710184 | p02389 | u500257793 | 1525422089 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a=int(input())
b=int(input())
c=a*b;d=(a+b)*2
print(c d)
|
s142928285 | p02389 | u500257793 | 1525422324 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a=int(input())
b=int(input())
print(a*b,(a+b)*2,sep=" ")
|
s228945456 | p02389 | u147527299 | 1525423664 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a,b=map(int,input().split())
print(a*b,2(a+b))
|
s405167205 | p02389 | u285250075 | 1525445806 | Python | Python | py | Runtime Error | 0 | 0 | 68 | a ,b = map(int,input().split())
s = a*b
l= a*2 + b*2
print(s+" "+l)
|
s384162497 | p02389 | u285250075 | 1525446194 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a, b = map(int, input().split())
s = a*b
l= a*2 + b*2
print(s+" "+l)
|
s502853293 | p02389 | u986478725 | 1525930789 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | def main():
a = int(input())
b = int(input())
print('%d %d' % (a * b, 2 * (a + b)))
if __name__ == "__main__":
main()
|
s632402248 | p02389 | u986478725 | 1525931928 | Python | Python3 | py | Runtime Error | 0 | 0 | 175 | def main():
a = []
for i in range(2):
a.append(int(input()))
print(str(a[0] * a[1]) + " " + str(2 * (a[0] + a[1])))
if __name__ == "__main__":
main()
|
s559015404 | p02389 | u986478725 | 1525932034 | Python | Python3 | py | Runtime Error | 0 | 0 | 230 | def numinput():
a = input().split()
for i in range(len(a)):
a[i] = int(a[i])
return a
def main():
a = numinput()
print('%d %d' % (a[0] * a[1], 2 * (a[0] + a[1]))
if __name__ == "__main__":
main()
|
s447792893 | p02389 | u455935767 | 1526019980 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a = input()
b = input()
y = int(a)*int(b)
z = int(a)*2+int(b)*2
print(y,z)
|
s106825331 | p02389 | u136295375 | 1526286835 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a=input()
b=input()
c=a*b
d=2*(a+b)
print (c,d)
|
s333899278 | p02389 | u136295375 | 1526286845 | Python | Python | py | Runtime Error | 0 | 0 | 46 | a=input()
b=input()
c=a*b
d=2*(a+b)
print (c)
|
s516365305 | p02389 | u136295375 | 1526286877 | Python | Python | py | Runtime Error | 0 | 0 | 36 | a=input()
b=input()
c=a*b
print (c)
|
s064783654 | p02389 | u361028487 | 1526386913 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a=int(input())
b=int(input())
print(a*b,(a+b)*2)
|
s975332298 | p02389 | u361028487 | 1526387002 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a=input()
b=input()
a=int(a)
b=int(b)
print(a*b,(a+b)*2)
|
s483707709 | p02389 | u890641984 | 1526453328 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a = (input())
b = (input())
print(a*b)
print(2a+2b)
|
s300954552 | p02389 | u890641984 | 1526453524 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | a,b = (4,5)
print(a*b)
print(2a+2b)
|
s882259140 | p02389 | u890641984 | 1526453624 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a = int(input())
b = int(input())
print(a*b)
print(2a+2b)
|
s605672297 | p02389 | u890641984 | 1526453701 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a = (input())
b = (input())
print(a*b)
print(2a+2b)
|
s008890039 | p02389 | u890641984 | 1526453719 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a = input
b = input
print(a*b)
print(2a+2b)
|
s369667067 | p02389 | u890641984 | 1526453759 | Python | Python3 | py | Runtime Error | 0 | 0 | 42 | a=input
b=input
print(a*b)
print(2a+2b)
|
s449689710 | p02389 | u890641984 | 1526453935 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | a=input
b=input
print(a*b)
print(2a+2b)
|
s041423815 | p02389 | u890641984 | 1526453954 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | a=input()
b=input()
print(a*b)
print(2a+2b)
|
s464962253 | p02389 | u890641984 | 1526454666 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | a=input()
b=input()
print(a*b,2a+2b)
|
s970671911 | p02389 | u890641984 | 1526454724 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a=int(input())
b=int(input())
print(a*b,2a+2b)
|
s501330929 | p02389 | u890641984 | 1526454865 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a=int(input())
b=int(input())
print(a*b,2(a+b))
|
s600980850 | p02389 | u890641984 | 1526454942 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | a=(input())
b=(input())
print(a*b,2(a+b))
|
s641266095 | p02389 | u890641984 | 1526456146 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | inp=input()
abl=inp.split()
map(int,abl)
a,b=list(map(int,abl))
print(a*b,2(a+b))
|
s095507948 | p02389 | u890641984 | 1526456160 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | inp=input()
abl=inp.split()
map(int,abl)
a,b=list(map(int,abl))
print(a*b,2(a+b))
|
s444393503 | p02389 | u890641984 | 1526456188 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | inp=input()
abl=inp.split()
map(int,abl)
a,b=list(map(int,abl))
print(a*b,2(a+b))
|
s523587758 | p02389 | u580559697 | 1526526423 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | x=int(input(x, y))
print(x * y)
|
s891214096 | p02389 | u500257793 | 1526560743 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a=int(input())
b=int(input())
print(f"{a*b} {(a+b)*2}")
|
s098362945 | p02389 | u500257793 | 1526561017 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a=int(input())
b=int(input())
print(f"{a*b}{(a+b)*2}")
|
s509506904 | p02389 | u500257793 | 1526561259 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a=int(input())
b=int(input())
print(f"{a*b},{(a+b)*2}")
|
s686592967 | p02389 | u500257793 | 1526561333 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a=int(input())
b=int(input())
print(a*b (a+b)*2)
|
s048651097 | p02389 | u500257793 | 1526561586 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a,b=map(int,input().split())
print(a*b (a+b)*2)
|
s545370057 | p02389 | u527389300 | 1526610367 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | l = map(int, raw_input().split())
print(l[0]*l[1])
|
s842097994 | p02389 | u527389300 | 1526610530 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | l = map(int, input().split())
print l[0]
print l[1]
|
s820520443 | p02389 | u637927800 | 1526846871 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a, b = map(int, input().split)
print("{} {}".format(a*b, 2*(a+b))
|
s804121010 | p02389 | u637927800 | 1526846914 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a, b = map(int, input().split())
print("{} {}".format(a*b, 2*(a+b))
|
s261384358 | p02389 | u237094818 | 1527358427 | Python | Python | py | Runtime Error | 0 | 0 | 126 | # -*- coding: utf-8
x = map(int, raw_input(),split())
a = x[0]
b = x[1]
R = a*b
P = 2*a+2*b
A = str(R)+" "+str(P)
print(A)
|
s757346378 | p02389 | u884342371 | 1527404452 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a = int(input())
b = int(input())
print("%d %d", % a*b, 2*a + 2*b)
|
s237119326 | p02389 | u884342371 | 1527404653 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a = int(input())
b = int(input())
print("%d %d", % (a*b, 2*a + 2*b))
|
s712700461 | p02389 | u884342371 | 1527405569 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a, b = map(int, input().split())
print("%d %d", % (a*b, 2*a + 2*b))
|
s027790133 | p02389 | u884342371 | 1527405622 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a, b = map(int, input().split())
print("%d %d", %(a*b, 2*a + 2*b))
|
s091169620 | p02389 | u884342371 | 1527405642 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a, b = map(int, input().split())
print("%d %d", %(a*b, 2*a + 2*b))
|
s391345725 | p02389 | u884342371 | 1527405944 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a, b = map(int,input().split())
print("%d %d" %(a*b, 2*a+2*b))
|
s622542959 | p02389 | u884342371 | 1527405974 | Python | Python | py | Runtime Error | 0 | 0 | 66 | a, b = map(int,input().split())
print("%d %d" %(a*b, 2*a+2*b))
|
s756704982 | p02389 | u176580590 | 1527410684 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a=int(input()) b=int(input())
print(a*b,(a+b)*2)
|
s310031375 | p02389 | u176580590 | 1527410710 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | a=int(input())
b=int(input())
print(a*b,(a+b)*2)
|
s597596897 | p02389 | u966110132 | 1527449577 | Python | Python3 | py | Runtime Error | 0 | 0 | 42 | x=int(input())
y=int(input())
print (x*y)
|
s223938157 | p02389 | u229973939 | 1527507547 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 |
a = input()
b = input()
print(a * b+ +(a + b) * 2)
|
s883428492 | p02389 | u229973939 | 1527507583 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 |
a = input()
b = input()
print(int(a) * int(b)+ +(int(a) + int(b)) * 2)
|
s063424130 | p02389 | u229973939 | 1527507648 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 |
a = input()
b = input()
print(int(a) * int(b) (int(a) + int(b)) * 2)
|
s210080064 | p02389 | u229973939 | 1527507727 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a = input()
b = input()
print(int(a) * int(b))
print((int(a) * int(b)) * 2)
|
s205346205 | p02389 | u229973939 | 1527507785 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 |
a = input()
b = input()
print(int(a) * int(b))
print((int(a) + int(b)) * 2)
|
s407449756 | p02389 | u229973939 | 1527520409 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | a,b = map(int,input(),split())
print(a * b,(a + b) * 2)
|
s435898225 | p02389 | u229973939 | 1527520567 | Python | Python | py | Runtime Error | 0 | 0 | 56 | a,b = map(int,input(),split())
print(a * b,(a + b) * 2)
|
s399646396 | p02389 | u229973939 | 1527520599 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a,b = map(int,input(),split())
print(a * b,(a + b) * 2)
|
s960380767 | p02389 | u745214779 | 1527640040 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | x = input()
y = input()
x = int(x)
y = int(y)
print (x*y, x*2+y*2)
|
s953870741 | p02389 | u745214779 | 1527640211 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | input(a, b)
a = int(a)
b = int(b)
print (a*b, a*2+b*2)
|
s796741108 | p02389 | u117053676 | 1528243903 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a,b = map(int,input().split())
men = a*b
hen = 2*(a+b)
print(men+" "+hen)
|
s190085407 | p02389 | u597483031 | 1528368203 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a=int(input())
b=int(input())
area=a*b
longht=a*2+b*2
print(area)
print(longht)
|
s212030562 | p02389 | u597483031 | 1528368441 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a=int(input())
b=int(input())
area=a*b
print(area)
longht=2*a+2*b
print(longht)
|
s128226408 | p02389 | u597483031 | 1528368665 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | a=int(input())
b=int(input())
area=a*b
print(area)
longht=2*a+2*b
print(longht)
print(str(area)+" "+str(longht))
|
s749604247 | p02389 | u597483031 | 1528368709 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a=int(input())
b=int(input())
area=a*b
longht=2*a+2*b
print(str(area)+" "+str(longht))
|
s069564181 | p02389 | u617913400 | 1528728097 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | a,b=int(input())
print(a*b,a*2+b*2)
|
s757412800 | p02389 | u617913400 | 1528728156 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a=int(input())
b=int(input())
print(a*b,a*2+b*2)
|
s587750044 | p02389 | u617913400 | 1528728241 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a=int(input())
b=int(input())
print(a*b)
print(a*2+b*2)
|
s136800973 | p02389 | u420214671 | 1528967037 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a,b=input().split()
a=int(a)
b=int(b)
print(a*b,2*(a+b)
|
s672362488 | p02389 | u420214671 | 1529022870 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a,b=input().split()
a=int(a)
b=int(b)
print(a*b.2*(a+b))
|
s638946202 | p02389 | u800780602 | 1529041241 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a = int(input())
b = int(input())
print((a + b) * 2)
|
s775988173 | p02389 | u800780602 | 1529041287 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a = int(input())
b = int(input())
print(a * b)
print((a + b) * 2)
|
s997903645 | p02389 | u800780602 | 1529041359 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a = int(input())
b = int(input())
print(a*b, ' ', (a+b) * 2 )
|
s720695148 | p02389 | u955389483 | 1529391234 | Python | Python3 | py | Runtime Error | 0 | 0 | 313 | area_input = input()
vertical = 0
side = 0
area_list = area_input.split(',')
if 1 <= vertical && side <= 100:
for i in area_list:
vertical = area_list[0]
side = area_list[1]
area = int(vertical) * int(side)
langth = 2 * (int(vertical) + int(vertical))
print(str(area) + " " + str(langth))
|
s904487994 | p02389 | u872428181 | 1529396097 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | data_str = input()
data = data_str.split(" ")
print(int(data[0]) * int(data[1]) +' '+2 * (int(data[0])+int(data[1])))
|
s095119348 | p02389 | u986523878 | 1529412299 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | i = list(map(int,input().split()))
a = i[0]*i[1]
b = 2*(i[0]+i[1])
print("{0} {1}".format(a.b))
|
s318026542 | p02389 | u119807026 | 1529738117 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a, b = map(int, split())
print(str(a*b )+ str(a*2 + b*2 ))
|
s869313534 | p02389 | u649777480 | 1529746871 | Python | Python | py | Runtime Error | 0 | 0 | 42 | a , b = input()
print(a*b)
print(2*a+2*b)
|
s239902749 | p02389 | u646500971 | 1529749339 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a = int(iput())
print(' ')
b = int(input())
print(a * b + ' ' + a * 2 + b * 2)
|
s042267557 | p02389 | u766693979 | 1529782448 | Python | Python | py | Runtime Error | 0 | 0 | 75 | a = input()
b = input()
print( int(a) * int(b), 2 * ( int(a) + int(b) ) )
|
s899017622 | p02389 | u766693979 | 1529783157 | Python | Python | py | Runtime Error | 0 | 0 | 74 | a, b = input().split()
print( int(a) * int(b), 2 * ( int(a) + int(b) ) )
|
s941999554 | p02389 | u766693979 | 1529784237 | Python | Python | py | Runtime Error | 0 | 0 | 92 | line = input().split()
a = int( line[0] )
b = int( line[1] )
print( a * b, 2 * ( a + b ) )
|
s258653586 | p02389 | u766693979 | 1529784350 | Python | Python | py | Runtime Error | 0 | 0 | 106 | line = input().split()
a = int( line[0] )
b = int( line[1] )
print( str( a * b ), str( 2 * ( a + b ) ) )
|
s896065796 | p02389 | u766693979 | 1529784404 | Python | Python | py | Runtime Error | 0 | 0 | 113 | line = input().split()
a = int( line[0] )
b = int( line[1] )
print( str( a * b ) + " " + str( 2 * ( a + b ) ) )
|
s935832612 | p02389 | u766693979 | 1529784502 | Python | Python | py | Runtime Error | 0 | 0 | 57 | a,b=[int(x) for x in input().split()]
print(a*b,(a+b)*2)
|
s624829208 | p02389 | u123669391 | 1529951249 | Python | Python | py | Runtime Error | 0 | 0 | 52 | a, b =map(int, input().split())
print(a*b, 2*(a+b))
|
s095369268 | p02389 | u123669391 | 1529951260 | Python | Python | py | Runtime Error | 0 | 0 | 53 | a, b =map(int, input().split())
print(a*b, 2*(a+b))
|
s270343716 | p02389 | u629779621 | 1529961325 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | print(float(input()) * float(input())
|
s669767253 | p02389 | u119807026 | 1529972858 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | a, b = map(int, input().split())
d = a*b
c = a*2 + b*2
print(d +" " +c)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.