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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s572307166 | p02389 | u825994660 | 1507520623 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a = int(input())
b = int(input())
print(str(a*b)+""+str(2a + 2b)) |
s995239100 | p02389 | u825994660 | 1507520630 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a = int(input())
b = int(input())
print(str(a*b)+" "+str(2a + 2b)) |
s018188738 | p02389 | u825994660 | 1507520670 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a = int(input())
b = int(input())
print(str(a*b)+" "+str(a*2 + b*2)) |
s594560183 | p02389 | u825994660 | 1507520689 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a = int(input())
b = int(input())
print(str(a*b)+""+str(a*2 + b*2)) |
s086907705 | p02389 | u825994660 | 1507520702 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | a = int(input())
b = int(input())
print(str(a*b), str(a*2 + b*2)) |
s964486884 | p02389 | u447423362 | 1507524321 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | x = raw_input().split()
y = map(int, x)
a = y[0]
b = y[1]
c = a*b
d = (a+b)*2
print c, d |
s154517566 | p02389 | u825994660 | 1507524764 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | z = int(input())
m,l = z.split()
print({} {}.format(m*l,m*2+l*2)) |
s483213677 | p02389 | u825994660 | 1507524774 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | z = int(input())
m,l = z.split()
print({} {}.format(m*l,m*2+l*2)) |
s254961866 | p02389 | u825994660 | 1507524871 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | z = input()
m,l = z.split()
s = int(m) * int(l)
n = int(m)*2 + int(l)*2
print({} {}.format(s,n)) |
s280770804 | p02389 | u825994660 | 1507524889 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | z = input()
m,l = z.split()
s = int(m) * int(l)
n = int(m)*2 + int(l)*2
print({} {}.format(str(s),str(n))) |
s552701471 | p02389 | u400765446 | 1507738083 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | print(a*b,2*(a+b),'\n') |
s680816851 | p02389 | u378480414 | 1508080643 | Python | Python | py | Runtime Error | 0 | 0 | 64 | x, y = raw_input().split(' ')
print '{} {}'.format(x*y, (x+y)*2) |
s912093571 | p02389 | u424457654 | 1508293925 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a, b = map(int, input().split())
s = a * b
t = a * 2 + b * 2
print(s t) |
s422112285 | p02389 | u876635199 | 1508490523 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | a,b = map(int, input().split())
x = a*b
y = 2a + 2b |
s073624471 | p02389 | u996463517 | 1508560430 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | n = input().split()
a = int(n[0])
b = int(n[1])
print('{} {}'.format(a*b,2*a+2*b) |
s120185446 | p02389 | u996463517 | 1508560781 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | n = input().split()
a = int(n[0])
b = int(n[1])
s = a*b
l = 2*a+2*b
print('{} {}'.format(s,l) |
s681139948 | p02389 | u334587021 | 1509129590 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | x,y = map(int,input().split().strip())
print(x*y)
print(2*(x+y)) |
s612903768 | p02389 | u334587021 | 1509129631 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | x,y = map(int,input().split().strip())
print(x*y," ",2*(x+y)) |
s436713818 | p02389 | u334587021 | 1509129689 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | x,y = map(int,input().split().strip())
s=x*y
p=2*(x+y)
print("%d %d"%(s,p)) |
s987981069 | p02389 | u737311644 | 1509145180 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a=int(input())
b=int(input())
e=a*b
c=a*2+b*2
print(e,c) |
s789866681 | p02389 | u043968625 | 1509194282 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a=int(input().split())
print(a[0]*a[1],(a[0]+a[1])*2) |
s207595385 | p02389 | u043968625 | 1509194807 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 |
a=input().split()
b=a[0]*a[1]
c=(a[0]+a[1])*2
print(b,c) |
s016618344 | p02389 | u043968625 | 1509195568 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | x,y=[int(i) for i in input(num).split()]
print(x*y,(x+y)*2) |
s585447993 | p02389 | u846136461 | 1509264186 | Python | Python | py | Runtime Error | 0 | 0 | 483 | # coding: utf-8
import codecs
import sys
sys.stdout = codecs.getwriter("shift_jis")(sys.stdout) # ??????
sys.stdin = codecs.getreader("shift_jis")(sys.stdin) # ??\???
# ??\??¬?????????print??????????????´?????? print(u'?????????') ??¨??????
# ??\??¬?????????input??? input(u'?????????') ??§OK
# ??°?¢???????????????????????????´??????6,7???????????????????????¢??????
height, width = map(int, raw_input.split(" "))
print("{0} {1}".format(height*width, 2*(height+width))) |
s198032941 | p02389 | u846136461 | 1509264209 | Python | Python | py | Runtime Error | 0 | 0 | 489 | # coding: utf-8
"""
import codecs
import sys
sys.stdout = codecs.getwriter("shift_jis")(sys.stdout) # ??????
sys.stdin = codecs.getreader("shift_jis")(sys.stdin) # ??\???
# ??\??¬?????????print??????????????´?????? print(u'?????????') ??¨??????
# ??\??¬?????????input??? input(u'?????????') ??§OK
# ??°?¢???????????????????????????´??????6,7???????????????????????¢??????
"""
height, width = map(int, raw_input.split(" "))
print("{0} {1}".format(height*width, 2*(height+width))) |
s086282739 | p02389 | u846136461 | 1509264288 | Python | Python | py | Runtime Error | 0 | 0 | 123 | height, width = map(int, raw_input.split(" "))
menseki = height * width
nagasa = 2 * (height + width)
print menseki, nagasa |
s934889813 | p02389 | u846136461 | 1509264474 | Python | Python | py | Runtime Error | 0 | 0 | 156 | deglist = raw_input.split(" ")
height = int(deglist[0])
width = int(deglist[1])
menseki = height * width
nagasa = 2 * (height + width)
print menseki, nagasa |
s580637758 | p02389 | u575366485 | 1509292024 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a,b=[int(i),for i in input().split()]
c = a*b
print(c) |
s879749629 | p02389 | u575366485 | 1509292044 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a,b=[int(i),for i in input().split( )]
c = a*b
print(c) |
s682117588 | p02389 | u022665025 | 1509366532 | Python | Python | py | Runtime Error | 0 | 0 | 31 | a, b=print()
print(a*b (a+b)*2) |
s416737267 | p02389 | u022665025 | 1509368001 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a, b = map(int, raw_input().split())
print(a*b, (a+b)*2 ) |
s419447289 | p02389 | u518939641 | 1509377955 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | x=int(split(input()," "))
a=x[0]
b=x[1]
print(str(a*b)+' '+str(2*(a+b))) |
s356636151 | p02389 | u518939641 | 1509378115 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | x=int(split(input()," "))
a=x[0]
b=x[1]
print(str(a*b)+' '+str(2*(a+b))) |
s758497830 | p02389 | u518939641 | 1509378163 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | x=int(input().split())
a=x[0]
b=x[1]
print(str(a*b)+' '+str(2*(a+b))) |
s275101889 | p02389 | u518939641 | 1509378392 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a,b=int(input().split())
print(str(a*b)+' '+str(2*(a+b))) |
s152674098 | p02389 | u480716860 | 1509505435 | Python | Python | py | Runtime Error | 0 | 0 | 222 | a = int(input("?????¢??????????????\????????????????????????"))
b = int(input("?????????????????\????????????????????????"))
s = a * b
l = (a * 2) + (b * 2)
print('????????¢?????¢??????',???)
print('??¨????????????',l) |
s376940402 | p02389 | u480716860 | 1509505476 | Python | Python3 | py | Runtime Error | 0 | 0 | 222 | a = int(input("?????¢??????????????\????????????????????????"))
b = int(input("?????????????????\????????????????????????"))
s = a * b
l = (a * 2) + (b * 2)
print('????????¢?????¢??????',???)
print('??¨????????????',l) |
s466623195 | p02389 | u104114903 | 1509510243 | Python | Python | py | Runtime Error | 0 | 0 | 177 | in = input()
for i in range(0,len(in)):
if(a[i] == ' '):
surface = int(a[:i])*int(a[i+1:])
edge = (int(a[:i])+int(a[i+1:]))*2
print(str(surface) + ' ' + str(edge)) |
s163239928 | p02389 | u104114903 | 1509510314 | Python | Python | py | Runtime Error | 0 | 0 | 182 | in = input()
for i in range(0,len(in)):
if(in[i] == ' '):
surface = int(in[:i])*int(in[i+1:])
edge = (int(in[:i])+int(in[i+1:]))*2
print(str(surface) + ' ' + str(edge)) |
s675944429 | p02389 | u104114903 | 1509510436 | Python | Python | py | Runtime Error | 0 | 0 | 218 | inputStr = input()
for i in range(0,len(in)):
if(inputStr[i] == ' '):
surface = int(inputStr[:i])*int(inputStr[i+1:])
edge = (int(inputStr[:i])+int(inputStr[i+1:]))*2
print(str(surface) + ' ' + str(edge)) |
s683081504 | p02389 | u104114903 | 1509510481 | Python | Python3 | py | Runtime Error | 0 | 0 | 218 | inputStr = input()
for i in range(0,len(in)):
if(inputStr[i] == ' '):
surface = int(inputStr[:i])*int(inputStr[i+1:])
edge = (int(inputStr[:i])+int(inputStr[i+1:]))*2
print(str(surface) + ' ' + str(edge)) |
s140616476 | p02389 | u183248852 | 1509510655 | Python | Python | py | Runtime Error | 0 | 0 | 83 | import sys
a = sys.argv[0]
b = sys.argv[1]
area = a*b
peri = 2a+2b
print area peri |
s951236414 | p02389 | u650657239 | 1509543937 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | num = [int(i) for i in input().split()]
print(num[0] * num[1] end = " ")
print(num[0] * 2 + num[1] *2) |
s772142774 | p02389 | u553796841 | 1509760322 | Python | Python | py | Runtime Error | 0 | 0 | 48 | a=int(input())
b=int(input())
print a*b ,a*2+b*2 |
s304826786 | p02389 | u553796841 | 1509762658 | Python | Python | py | Runtime Error | 0 | 0 | 38 | a=input()
b=input()
print a*b ,a*2+b*2 |
s279260888 | p02389 | u725391514 | 1510305627 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | x=int(input())
y=int(input())
print(x*y) |
s066302860 | p02389 | u725391514 | 1510305720 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | x=int(input())
y=int(input())
print(x*y)
print(x*2+y*2) |
s638325573 | p02389 | u725391514 | 1510305879 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | x,y=int(input())
print(x*y, (x+y)*2) |
s337746815 | p02389 | u553796841 | 1510306223 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | h,w=map(int,raw_input().split())
print("%d %d"%(h*w,h*2+w*2)) |
s547568212 | p02389 | u725391514 | 1510306288 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | x=int(input())
x1=int(input())
print(x*x1, (x+x1)*2) |
s572713405 | p02389 | u725391514 | 1510306601 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | a,b=map(int,input())
print(a*b,(a+b)*2) |
s795461767 | p02389 | u422299972 | 1510319491 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | int x,y = input().split()
print(x * y + " " + (x + y) / 2) |
s992138372 | p02389 | u422299972 | 1510319580 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | int x,y = input().split()
print(x * y + " " + (x + y) * 2) |
s859857785 | p02389 | u422299972 | 1510319708 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | int n = input().split()
x = n[0]
y = n[1]
print(x * y + " " + (x + y) * 2) |
s380693196 | p02389 | u422299972 | 1510320154 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | int x,y = input().split()
if x == y:
print(x * y + " " + x * 4)
else
print(x * y + " " + (x + y) * 2) |
s358223908 | p02389 | u422299972 | 1510320356 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | x,y = input().split()
if x == y:
print(x * y + " " + x * 4)
else
print(x * y + " " + (x + y) * 2) |
s778788319 | p02389 | u422299972 | 1510320530 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | n = input().split()
x = n[0]
y = n[1]
if x == y:
print(x * y + " " + x * 4)
else
print(x * y + " " + (x + y) * 2) |
s742163891 | p02389 | u422299972 | 1510320598 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | n = input().split()
x = int(n[0])
y = int(n[1])
if x == y:
print(x * y + " " + x * 4)
else
print(x * y + " " + (x + y) * 2) |
s104929038 | p02389 | u422299972 | 1510320754 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | x,y = input().split()
print(x * y, x * 2 + y * 2) |
s035227991 | p02389 | u899891332 | 1510451950 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a=input().split('')
print(int(a[0])*int(a[1]), end=' ')
print(int(a[0]*2+a[1]*2) |
s554982223 | p02389 | u899891332 | 1510451980 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a=input().split('')
print(int(a[0])*int(a[1]), end=' ')
print(int(a[0])*2+int(a[1])*2) |
s570104947 | p02389 | u499289652 | 1510475744 | Python | Python | py | Runtime Error | 0 | 0 | 30 | a=input()
b=input()
print(a*b) |
s484450999 | p02389 | u499289652 | 1510475767 | Python | Python | py | Runtime Error | 0 | 0 | 34 | a = input()
b = input()
print(a*b) |
s532914594 | p02389 | u499289652 | 1510475775 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | a = input()
b = input()
print(a*b) |
s126332003 | p02389 | u499289652 | 1510476827 | Python | Python3 | py | Runtime Error | 0 | 0 | 42 | a = input()
b = input()
print(a*b,2*a+2*b) |
s070459027 | p02389 | u499289652 | 1510476831 | Python | Python | py | Runtime Error | 0 | 0 | 42 | a = input()
b = input()
print(a*b,2*a+2*b) |
s223838996 | p02389 | u499289652 | 1510477276 | Python | Python | py | Runtime Error | 0 | 0 | 47 | a,b=map(int,input().split())
print(a*b,2*a+2*b) |
s732911573 | p02389 | u811314383 | 1510733779 | Python | Python | py | Runtime Error | 0 | 0 | 36 | a = input()
b = input()
print(a + b) |
s226964309 | p02389 | u811314383 | 1510733856 | Python | Python | py | Runtime Error | 0 | 0 | 50 | a = input()
b = input()
print(a*b + ' ' + 2*(a+b)) |
s753831428 | p02389 | u811314383 | 1510734594 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a, b = input().split
print(a??????b + ' ' + 2??????(a+b)) |
s831954817 | p02389 | u409699893 | 1510736700 | Python | Python | py | Runtime Error | 0 | 0 | 56 | a,b = int(raw_input().split(" "))
print a * b, 2*(a + b) |
s096885572 | p02389 | u409699893 | 1510736811 | Python | Python | py | Runtime Error | 0 | 0 | 92 | a = int(raw_input().split(" ")[0])
b = int(raw_input().split(" ")[1])
print a * b, 2*(a + b) |
s181742322 | p02389 | u409699893 | 1510736948 | Python | Python | py | Runtime Error | 0 | 0 | 68 | x = raw_input().split(" ")
a = x[0]
b = x[1]
print a * b, 2*(a + b) |
s096959278 | p02389 | u409699893 | 1510737105 | Python | Python | py | Runtime Error | 0 | 0 | 67 | x = raw_input().split(" ")
a = x[0]
b = x[1]
print a * b, 2*(a + b) |
s121688148 | p02389 | u488038316 | 1511157782 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a, b = map(int, input().split())
print('{0} {1}'.format(a*b, 2a+2b)) |
s374107661 | p02389 | u488038316 | 1511157973 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | import sys
for line in sys.stdin.readlines():
a, b = map(int, line.split())
print('{0} {1}'.format(a*b, 2a+2b)) |
s052477901 | p02389 | u488038316 | 1511158100 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | import sys
for line in sys.stdin.readlines():
a, b = map(int, line.split())
print('{0} {1}'.format(a*b, 2a+2b)) |
s212747737 | p02389 | u488038316 | 1511158203 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | import fileinput
for line in fileinput.input():
a, b = map(int, line.strip().split())
print('{0} {1}'.format(a*b, 2a+2b)) |
s509428071 | p02389 | u335508235 | 1511239751 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | a=int(input())
b=int(input())
m=a*b
l=2*a+2*b
print(m l) |
s876133279 | p02389 | u825264062 | 1511425639 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | x=int(input())
y=int(input())
print(x*y,end=' ')
print(x*2+y*2) |
s142581509 | p02389 | u141867274 | 1511508248 | Python | Python | py | Runtime Error | 0 | 0 | 43 | x = input()
y = input()
print(x*y, 2*(x+y)) |
s557380296 | p02389 | u141867274 | 1511508364 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a = int(input())
b = int(input())
print(x*y, 2*(x+y)) |
s536544355 | p02389 | u141867274 | 1511508432 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | x = int(input())
y = int(input())
print(x+y, 2*(x+y)) |
s875117014 | p02389 | u902251949 | 1511606242 | Python | Python | py | Runtime Error | 0 | 0 | 355 | InputData=[]
while True:
try:
in1,in2 = map(int,raw_input().split(" ")) # Python2
if in1==0 and in2==0 : break
InputData.append([in1,in2])
except EOFError:
break
for i in range(len(InputData)):
in1,in2 = InputData[i]
x = int(in1) * int(in2)
y = int(in1) + int(in2) + int(in1) + int(in2)
)
print(x y) |
s963867285 | p02389 | u217069758 | 1511675513 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a = int(input())
b = int(input())
if (3 <= a <= 5) and (3 <= b <= 5):
print(a * b) |
s253716271 | p02389 | u968165442 | 1512314778 | Python | Python3 | py | Runtime Error | 0 | 0 | 170 | i=input()
a,b = i.split(' ')
v,h = int(a),int(b)
area = v * h
div = 2 * (v + h)
print(' '.join([str(area),str(div)]))
~ |
s884362809 | p02389 | u968165442 | 1512315427 | Python | Python3 | py | Runtime Error | 0 | 0 | 167 | i=input()
a,b = i.split(' ')
v,h = int(a),int(b)
area = v * h
div = 2 * (v + h)
print(' '.join([str(area),str(div)])) |
s594065947 | p02389 | u017523606 | 1512808690 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | a = input()
b = input()
a = int(a)
b = int(b)
print('%d %d'%(a*b,2*a+2*b)) |
s670039903 | p02389 | u017523606 | 1512809236 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a = input()
b = input()
print('%d %d'%(int(a)*int(b),2*int(a)+2*int(b))) |
s104524059 | p02389 | u017523606 | 1512809315 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a = input()
b = input()
print('%d %d'%(int(a)*int(b),2*int(a)+2*int(b))) |
s044955165 | p02389 | u150984829 | 1513041062 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | x=input()
print(f"{x[0]*x[1}} {(x[0]+x[1])*2}") |
s938238791 | p02389 | u150984829 | 1513041076 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | x=input()
print(f"{x[0]*x[1}} {(x[0]+x[1])*2}") |
s197362906 | p02389 | u150984829 | 1513041101 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | x=input().split(" ")
print(f"{x[0]*x[1}} {(x[0]+x[1])*2}") |
s479362104 | p02389 | u150984829 | 1513048384 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a,b=map(int,input().split())
print(f'{a*b} {(a+b)*2}) |
s544402040 | p02389 | u266356399 | 1513221641 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | from sys import stdin
for line in stdin:
n = int(line)
if n == 42:
break
print(n) |
s051854737 | p02389 | u423320231 | 1513340959 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | a=input()
b=input()
print(ab,2(a+b)) |
s653488176 | p02389 | u423320231 | 1513341211 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | x=input()
y=input()
a=int(x)
b=int(y)
print(a*b,2(a+b)) |
s842059750 | p02389 | u423320231 | 1513341488 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | a,b=map(int,raw_input().split())
print(a*b,2*(a+b)) |
s458343346 | p02389 | u830563109 | 1513438380 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a = input()
b = input()
m = a*b
s = a+b*2
print("m,s") |
s352561304 | p02389 | u830563109 | 1513438442 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a = int(input())
b = int(input())
m = a*b
s = a+b*2
print("m,s") |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.