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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s321449467 | p02389 | u822442916 | 1474198261 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | a,b=map(int,input().split())
if a<b :
print('a<b')
elif a>b :
print('a>b')
else a=b :
print('a==b')
|
s276578376 | p02389 | u675500862 | 1474267735 | Python | Python | py | Runtime Error | 0 | 0 | 49 | x = input()
y = input()
print x * y, (x + y) * 2 |
s224932161 | p02389 | u135273382 | 1474780796 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a, b = map(int, raw_input().split())
print(a*b,' ',2*(a+b)) |
s449925453 | p02389 | u135273382 | 1474780903 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a, b = map(int, raw_input().split())
print(a*b,2*(a+b)) |
s451697545 | p02389 | u419760455 | 1475219513 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | data = int(input().split())
S = data[0]*data[1]
L = 2*(data[0]+data[1])
print(S, L) |
s258266205 | p02389 | u419760455 | 1475219527 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | data = int(input().split())
S = data[0]*data[1]
L = 2*(data[0]+data[1])
print(int(S, L)) |
s514113529 | p02389 | u494314211 | 1475342915 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | a,b=map(int,input().split())
print(a*b+" "+(a+b)*2) |
s164738216 | p02389 | u352273463 | 1475413972 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a=int(input())
b=int(input())
print(a*b (a+b)*2) |
s128189138 | p02389 | u352273463 | 1475415575 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a,b=map(int,input().split())
print(a*b (a+b)*2\n) |
s983739434 | p02389 | u159356473 | 1475721348 | Python | Python3 | py | Runtime Error | 0 | 0 | 269 | #coding: UTF-8
def Rectangle_Area(a,b):
return a*b
def Rectangle_Length(a,b):
return 2*a+2*b
if __name__=="__main__":
a = input()
b = input()
area = Rectangle_Area(int(a),int(b))
length = Rectangle_Length(int(a),int(b))
print(area,length) |
s077685678 | p02389 | u159356473 | 1475721371 | Python | Python3 | py | Runtime Error | 0 | 0 | 269 | #coding: UTF-8
def Rectangle_Area(a,b):
return a*b
def Rectangle_Length(a,b):
return 2*a+2*b
if __name__=="__main__":
a = input()
b = input()
area = Rectangle_Area(int(a),int(b))
length = Rectangle_Length(int(a),int(b))
print(area,length) |
s986197777 | p02389 | u159356473 | 1475721557 | Python | Python3 | py | Runtime Error | 0 | 0 | 182 | #coding: UTF-8
def Rectangle(a,b):
return a*b,2*a+2*b
if __name__=="__main__":
a = input()
b = input()
area,length = Rectangle(int(a),int(b))
print(area,length) |
s062662374 | p02389 | u159356473 | 1475721619 | Python | Python3 | py | Runtime Error | 0 | 0 | 182 | #coding: UTF-8
def Rectangle(a,b):
return a*b,2*(a+b)
if __name__=="__main__":
a = input()
b = input()
area,length = Rectangle(int(a),int(b))
print(area,length) |
s702208439 | p02389 | u226541377 | 1476360012 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | a = int(input())
b = int(input())
menseki = a * b
print(menseki)
nagasa = a + a + b + b
print(nagasa) |
s648806122 | p02389 | u757827098 | 1476517768 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a,b = (int(i) for i in input.split())
print(a * b , a * 2 + b * 2) |
s101469621 | p02389 | u757827098 | 1476517853 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | a,b = [int(i) for i in input.split()]
print(a * b , a * 2 + b * 2) |
s315276290 | p02389 | u801346721 | 1476599912 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | a=int(input())
b=int(input())
print(a*b) |
s036652596 | p02389 | u996758922 | 1476832993 | Python | Python3 | py | Runtime Error | 0 | 0 | 44 | a = int(input())
b = int(input())
print(a*b) |
s818767563 | p02389 | u996758922 | 1476833318 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a = int(input())
b = int(input())
print(str(a*b)+" ", end="")
print(a*2+b*2) |
s241472239 | p02389 | u175111751 | 1477420986 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a, b = [int(x) for x in input().split(' ')]
print('{0} {1}').format(a*b, (a+b)*2) |
s906718254 | p02389 | u831244171 | 1477483622 | Python | Python | py | Runtime Error | 0 | 0 | 71 | a = input()
b = input()
c = a * b
d = 2 * (a + b)
print (int(c) int(d)) |
s132838366 | p02389 | u236295012 | 1477493928 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | x=input(vertical:)
y=input(horizontal:)
z=int(x)*int(y)
l=int(x)+int(y)
print(z l) |
s946524643 | p02389 | u236295012 | 1477494018 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | x=()
y=()
z=int(x)*int(y)
l=int(x)+int(y)
print(z l) |
s511558560 | p02389 | u250482563 | 1477543880 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | a. b = map(int, input().split())
print(a*b, 2*(a+b)) |
s661933062 | p02389 | u936478090 | 1477828949 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a = int(input())
b = int(input())
print(a*b, 2*(a+b), end=' ') |
s345617364 | p02389 | u936478090 | 1477829394 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a = int(input())
b = int(input())
print(a*b, 2*(a+b), end='') |
s182048995 | p02389 | u936478090 | 1477829429 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | a = input())
b = input())
a = int(a)
b = int(b)
print(a*b, 2*(a+b), end='') |
s542931046 | p02389 | u967794515 | 1477831088 | Python | Python | py | Runtime Error | 0 | 0 | 108 | # coding: utf-8
# Here your code !
a = input()
b = input()
men = a*b
syu = a*2 + b*2
print men ,
print syu , |
s941875520 | p02389 | u967794515 | 1477831551 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | # coding: utf-8
# Here your code !
a = input()
b = input()
x = a*b
y = a*2 + b*2
print "%d"%x,
print "%d"%y |
s992117711 | p02389 | u967794515 | 1477832294 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | # coding: utf-8
# Here your code !
x = input().split()
a = x[0]
b = x[1]
men = a*b
syu = a*2+b*2
print men,
print syu |
s954560790 | p02389 | u967794515 | 1477832329 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | # coding: utf-8
# Here your code !
x = input().split()
a = x[0]
b = x[1]
men = a*b
syu = a*2+b*2
print men
print syu |
s450359276 | p02389 | u967794515 | 1477832712 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | # coding: utf-8
# Here your code !
x = input().split()
a = x[0]
b = x[1]
m = a*b
s = a*2+b*2
print m, s |
s987820155 | p02389 | u967794515 | 1477832973 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | # coding: utf-8
# Here your code !
a, b = map(int, input().split())
m = a * b
s = a * 2 + b * 2
print m, s |
s397797949 | p02389 | u967794515 | 1477833205 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | # coding: utf-8
# Here your code !
a, b = map(int, input().split())
m = a * b
s = a * 2 + b * 2
print m, s |
s631831593 | p02389 | u967794515 | 1477833249 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | # coding: utf-8
# Here your code !
a, b = map(int, input().split())
m = a * b
s = a * 2 + b * 2
print m, s |
s496741494 | p02389 | u967794515 | 1477833589 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | # coding: utf-8
# Here your code !
a, b = map(int, raw_input().split())
m = a * b
s = a * 2 + b * 2
print(s,m) |
s120089400 | p02389 | u460911277 | 1478268671 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | a=0
b=0
a=int(input())
b=int(input())
print(2*a+2*b)
print(a*b) |
s113626400 | p02389 | u460911277 | 1478268736 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a=0
b=0
a=int(input())
b=int(input())
print(a*b)
print(2*a+2*b) |
s026751046 | p02389 | u326248180 | 1478755706 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | ary = input().split(" ")
print(ary(0)*ary(1)) |
s741696113 | p02389 | u326248180 | 1478755798 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | ary = input().split(" ")
print(ary[0]*ary[1])
print((ary[0]*2) + (ary[1]*2)) |
s623536050 | p02389 | u326248180 | 1478755845 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | ary = input().split(" ")
print(ary[0]*ary[1] + " " + (ary[0]*2) + (ary[1]*2)) |
s739793197 | p02389 | u326248180 | 1478755956 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | x, y = input().split()
a = x * y
b = x**2 + y**2
print("{} {}".format(a, b)) |
s541352385 | p02389 | u326248180 | 1478755975 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | x, y = int(input().split())
a = x * y
b = x**2 + y**2
print("{} {}".format(a, b)) |
s199587612 | p02389 | u830616709 | 1479110731 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | print("{0}{1}".format(*(lambda a:lambda b:[a*b,a+b])(int(input()))(int(input())))) |
s183335230 | p02389 | u086566114 | 1479298144 | Python | Python | py | Runtime Error | 0 | 0 | 100 | import sys
map(int, [a,b]) = sys.stdin.readlines().strip()
print("{0} {1}".format(a+b, 2*a + 2*b)) |
s633429618 | p02389 | u086566114 | 1479298169 | Python | Python | py | Runtime Error | 0 | 0 | 109 | import sys
[a,b] = [int(x) for x in sys.stdin.readlines().strip()]
print("{0} {1}".format(a+b, 2*a + 2*b)) |
s397152018 | p02389 | u086566114 | 1479298275 | Python | Python | py | Runtime Error | 0 | 0 | 117 | import sys
[a,b] = [int(x) for x in sys.stdin.readlines().strip().split()]
print("{0} {1}".format(a+b, 2*a + 2*b)) |
s947219446 | p02389 | u226541377 | 1479693949 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | A,B =map(int, raw_input().split())
print A*B (A+B)*2 |
s290915933 | p02389 | u226541377 | 1479694309 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | A,B =map(int, raw_input().split())
print(A*B, A*2 + B*2) |
s607688067 | p02389 | u433605272 | 1479993120 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a,b=map(int,raw_input(1,2).split())
print(a*b, (a+b)*2) |
s090365346 | p02389 | u433605272 | 1479993942 | Python | Python | py | Runtime Error | 0 | 0 | 65 | a,b = map(int, raw_input(1,2).split())
print((a+b),((a+b*2))) |
s442214293 | p02389 | u435300817 | 1480080434 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | values = input()
height, width = [int(x) for x in values.split()]
print(' '.join(height * width, height * 2 + width * 2)) |
s208741238 | p02389 | u104931506 | 1480177826 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | a, b = map(int, input().split())
print(a*b 2*a+2*b) |
s801263022 | p02389 | u660912567 | 1480200639 | Python | Python3 | py | Runtime Error | 0 | 0 | 385 | import java.io.BufferedReader;
import java.io.InputStreamReader;
class Main{
public static void main(String[] args) throws Exception{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] line = br.readLine().split(" ");
int x = Integer.parseInt(line[0]);
int y = Integer.parseInt(line[1]);
System.out.println(x*y+" "+(x+y)*2);
}
} |
s375890270 | p02389 | u497195381 | 1480229659 | Python | Python | py | Runtime Error | 0 | 0 | 81 | l = map(int,raw_input().split())
print(l[0]*l[1])
print(" ")
print(l[0]*2+[1]*2) |
s730498145 | p02389 | u156024720 | 1480250518 | Python | Python3 | py | Runtime Error | 0 | 0 | 134 | import sys
ARGV = sys.argv[:]
num = ARGV[1] * ARGV[2]
length = (ARGV[1] * 2) + (ARGV[2] * 2)
print(num + " " + length, end="\n") |
s022398458 | p02389 | u156024720 | 1480250699 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | import sys
a = int(sys.argv[1])
b = int(sys.argv[2])
num = a * b
length = (a * 2) + (b * 2)
print(num + " " + length, end="\n") |
s988723888 | p02389 | u156024720 | 1480250917 | Python | Python3 | py | Runtime Error | 0 | 0 | 183 | import sys
a = int(sys.argv[1])
b = int(sys.argv[2])
if (a >= 1) or (b <= 100):
num = a * b
length = (a * 2) + (b * 2)
print(num + " " + length, end="\n")
else:
pass |
s325291818 | p02389 | u156024720 | 1480251093 | Python | Python3 | py | Runtime Error | 0 | 0 | 155 | a, b = int(input("", ""))
if (a >= 1) or (b <= 100):
num = a * b
length = (a * 2) + (b * 2)
print(num + " " + length, end="\n")
else:
pass |
s929564977 | p02389 | u156024720 | 1480251229 | Python | Python3 | py | Runtime Error | 0 | 0 | 157 | a, b = int(input().split())
if (a >= 1) or (b <= 100):
num = a * b
length = (a * 2) + (b * 2)
print(num + " " + length, end="\n")
else:
pass |
s177019506 | p02389 | u128236306 | 1480345666 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | ab = input().split(" ")
a = int(ab[0])
b = int(ab[1])
print("{} {}",format(a * b, a * 2 + b * 2) |
s299750800 | p02389 | u569672348 | 1481193262 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a=input()
b=input()
print(int(a)*int(b)," ",int(a)*2+int(b)*2) |
s163196862 | p02389 | u234837959 | 1481214814 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | list = input().split(' ')
area = list[0] * list[1]
circum = (list[0] + list[1]) * 2
print(str(area) + " " + str(circum)) |
s323209338 | p02389 | u234837959 | 1481214969 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | list = input().split(' ')
print(str(list[0] * list[1]) + ' ' + str((list[0] + list[1]) * 2) |
s584411737 | p02389 | u234837959 | 1481215159 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | list = input().split(' ')
x = int(list[0]) * int(list[1])
y = (int(list[0]) + int(list[1])) * 2
print('{} {}').format(x,y) |
s192144333 | p02389 | u673645945 | 1481259229 | Python | Python | py | Runtime Error | 0 | 0 | 57 | a = raw_input().split(" ")
print a[0]*a[1], (a[0]+a[1])*2 |
s645035058 | p02389 | u673645945 | 1481259323 | Python | Python | py | Runtime Error | 0 | 0 | 89 | n = raw_input()
a = n.split(" ")
b = int(a[0])
c = int(a[1])
print b*c, (b+c)*2 |
s790717097 | p02389 | u693424532 | 1481547754 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a,b = map(int,input.split())
print(a*b 2*(a+b)) |
s923489378 | p02389 | u693424532 | 1481548588 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | a,b = map(input().split())
print(str(a*b)+" "+str(2*(a+b))) |
s572529255 | p02389 | u693424532 | 1481548722 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a,b = map(input().split())
c = a*b
d = 2*(a+b)
print(str(c)+" "+str(d)) |
s825477261 | p02389 | u693424532 | 1481548861 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a,b = map(input().split())
print(str(a*b), str(2(a+b))) |
s945263114 | p02389 | u693424532 | 1481548910 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | a,b = map(input().split())
print(a*b, 2*(a+b)) |
s850540009 | p02389 | u948204119 | 1481810076 | Python | Python | py | Runtime Error | 0 | 0 | 35 | a = input()
b = input()
print a * b |
s923835321 | p02389 | u493187281 | 1482287053 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a=int(input())
b=int(input())
menseki=a*b
syu=a*2+b*2
print(menseki,syu) |
s068807454 | p02389 | u234358002 | 1482287609 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a=int(input())
b=int(input())
S=a*b
L=a*2+b*2
print(S,L) |
s505817035 | p02389 | u234358002 | 1482287764 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | a=int(input())
b=int(input())
S=a*b
L=a*2+b*2
print(S, ,L) |
s479740513 | p02389 | u234358002 | 1482287846 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a=int(input())
b=int(input())
S=a*b
L=a*2+b*2
print(S,end="")
print(L,end="") |
s943941818 | p02389 | u234358002 | 1482288537 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | lis=0
S=0
L=0
lis=input().split()
S=lis[0]*lis[1]
L=lis[0]*2+lis[1]*2
print(S L) |
s123573053 | p02389 | u234358002 | 1482288704 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | lis=0
S=0
L=0
lis=input().split()
S=lis[0]*lis[1]
L=lis[0]*2+lis[1]*2
print(S L) |
s465570082 | p02389 | u234358002 | 1482288764 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | lis=0
S=0
L=0
lis=int(input().split())
S=lis[0]*lis[1]
L=lis[0]*2+lis[1]*2
print(S L) |
s259938742 | p02389 | u234358002 | 1482288820 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | lis=0
S=0
L=0
lis=input().split()
S=int(lis[0])*int(lis[1])
L=int(lis[0])*2+int(lis[1]*2)
print(S L) |
s506058474 | p02389 | u622982727 | 1482649565 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | x=int(input())
y=int(input())
print(x*y,2*(x+y)) |
s583426440 | p02389 | u622982727 | 1482649709 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | x=int(input())
y=int(input())
print(x*y,2*(x+y)) |
s893741801 | p02389 | u622982727 | 1482649976 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | x=int(input())
y=int(input())
print(str(x*y)+" "+str(2*(x+y))) |
s126703875 | p02389 | u711822251 | 1482741901 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | b=int(input())
a= int(input())
print (a*b); |
s846144221 | p02389 | u019678978 | 1482853415 | Python | Python | py | Runtime Error | 0 | 0 | 72 | a = int(raw_input())
b = int(raw_input())
print(str(a*b) + str((a+b)*2)) |
s972417581 | p02389 | u019678978 | 1482853502 | Python | Python | py | Runtime Error | 0 | 0 | 78 | a = int(raw_input())
b = int(raw_input())
print(str(a*b) + ' ' + str((a+b)*2)) |
s755611612 | p02389 | u019678978 | 1482854019 | Python | Python | py | Runtime Error | 0 | 0 | 108 | data = raw_input()
dlist = data.split(' ')
a = int(dlist[0])
b = int(dlist[1])
print((a*b) + ' ' + (a+b)*2) |
s813321062 | p02389 | u019678978 | 1482854057 | Python | Python | py | Runtime Error | 0 | 0 | 115 | data = raw_input()
dlist = data.split(' ')
a = int(dlist[0])
b = int(dlist[1])
print(str(a*b) + ' ' + str((a+b)*2) |
s886837361 | p02389 | u711765449 | 1483441851 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | # -*- coding:utf-8 -*-
x,y = int(input()),int(input())
print(x*y) |
s938710798 | p02389 | u711765449 | 1483442285 | Python | Python3 | py | Runtime Error | 30 | 7536 | 126 | # -*- coding:utf-8 -*-
x = input()
a = x[0]
b = x[2]
area = int(a) * int(b)
length = int(a)*2 + int(b)*2
print(area,length) |
s214824678 | p02389 | u159126725 | 1483935769 | Python | Python | py | Runtime Error | 0 | 0 | 22 | print '%d %d' % (a, b) |
s864230682 | p02389 | u159126725 | 1483935871 | Python | Python | py | Runtime Error | 0 | 0 | 43 | a=input()
b=input()
print '%d %d' % (a, b) |
s198343942 | p02389 | u159126725 | 1483935940 | Python | Python | py | Runtime Error | 0 | 0 | 10 | print a, b |
s823753565 | p02389 | u159126725 | 1483936142 | Python | Python | py | Runtime Error | 0 | 0 | 40 | a, b = input()
print a, b
print a*a, b*b |
s866401155 | p02389 | u159126725 | 1483936199 | Python | Python | py | Runtime Error | 0 | 0 | 45 | a=input()
b=input()
print a, b
print a*a, b*b |
s869057405 | p02389 | u159126725 | 1483936228 | Python | Python | py | Runtime Error | 0 | 0 | 35 | a=input()
b=input()
print a*a, b*b |
s368227708 | p02389 | u314018844 | 1484658586 | Python | Python3 | py | Runtime Error | 0 | 0 | 140 | a = int(input())
b = int(input())
if a<1 or 100<a or b<1 or 100<b:
print("Error!")
else:
area = a*b
cir = (a+b)*2
print(area)
print(cir) |
s911065906 | p02389 | u314018844 | 1484659012 | Python | Python3 | py | Runtime Error | 0 | 0 | 150 | a = int(input())
b = int(input())
if 1<=a and a<= 100 and 1<=b and b<=100:
area = a*b
cir = (a+b)*2
print(area)
print(cir)
else:
print("Error!") |
s075289200 | p02389 | u314018844 | 1484659248 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | a = int(input())
b = int(input())
if 1<=a and a<= 100 and 1<=b and b<=100:
area = a*b
cir = (a+b)*2
print(area,cir)
else:
print("Error!") |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.