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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s222415159 | p02400 | u992449685 | 1535291575 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | from math import pi
r = int(input())
print("{:.6f} {:.6f}".format(2 * pi * r, pi * r ** 2))
|
s801205374 | p02400 | u992449685 | 1535291642 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | from math import pi
r = int(input())
print("{:.6f} {:.6f}".format(2 * pi * r, pi * r ** 2))
|
s873270628 | p02400 | u992449685 | 1535291737 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | pi = 3.1415926535
r = int(input())
print("{:.6f} {:.6f}".format(2 * pi * r, pi * r ** 2))
|
s848480480 | p02400 | u365921604 | 1535507686 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | import math
r = int(input())
print(round(r**2 * math.pi, 6), round(r * 2 * math.pi, 6))
|
s175171329 | p02400 | u096070545 | 1535626912 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | # coding: utf-8
# Your code here!
# ITP1_4_B
import math
r=int(input())
print(r*r*math.pi)
print(r*2*math.pi)
|
s063635451 | p02400 | u277375424 | 1540211243 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | import math
r = int(input())
print(math.pi*r**2 + " "+ 2*math.pi*r**2)
|
s523495928 | p02400 | u277375424 | 1540211527 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | import math
r = int(input())
x = math.pi
print(x*r**2 + " "+ 2x**r**2)
|
s827778994 | p02400 | u277375424 | 1540211646 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r = int(input())
x = math.pi
print(x*r**2 + " "+ 2x**r)
|
s061800669 | p02400 | u277375424 | 1540211660 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | import math
r = int(input())
x = math.pi
print(x*r**2 + " "+ 2*x**r)
|
s137040140 | p02400 | u277375424 | 1540211679 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r = int(input())
x = math.pi
print(x*r*r + " "+ 2*x**r)
|
s735997964 | p02400 | u277375424 | 1540211738 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | import math
r = float(input())
x = math.pi
print(x*r*r + " "+ 2*x**r)
|
s202791088 | p02400 | u823513038 | 1540277874 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | r = int(input())
pi = 3.141592653589793238
print(pi * r * r, 2 * pi * r)
|
s157204885 | p02400 | u281808376 | 1540294628 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | r=int(input())
print("{} {}".format(2*r*pi,r*r*pi))
|
s795373397 | p02400 | u281808376 | 1540294648 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | r=input()
print("{} {}".format(2*r*pi,r*r*pi))
|
s845788851 | p02400 | u281808376 | 1540294702 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | import math
r=input()
print("{} {}".format(2*r*pi,r*r*pi))
|
s429161415 | p02400 | u281808376 | 1540294729 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | import math
r=input()
print("{} {}".format(2*r*math.pi,r*r*math.pi))
|
s990321142 | p02400 | u281808376 | 1540294844 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | import math
pi=format(:.5,math.pi)
r=input()
print("{} {}".format(2*r*pi,r*r*pi))
|
s560698789 | p02400 | u281808376 | 1540294996 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | import math
pi=round(math.pi,7)
r=input()
print("{} {}".format(2*r*pi,r*r*pi))
|
s272125130 | p02400 | u281808376 | 1540295035 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | import math
pi=round(math.pi,7)
r=input()
print(2*r*pi r*r*pi)
|
s651412109 | p02400 | u281808376 | 1540295284 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | import math
pi=round(math.pi,7)
length=str(round(r*2*pi,6))
area=str(round(r**2*pi,6))
print("{} {}".format(length,area))
|
s875754256 | p02400 | u281808376 | 1540295300 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | import math
r=input()
pi=round(math.pi,7)
length=str(round(r*2*pi,6))
area=str(round(r**2*pi,6))
print("{} {}".format(length,area))
|
s693837498 | p02400 | u281808376 | 1540295701 | Python | Python3 | py | Runtime Error | 0 | 0 | 137 | import math
r=int(input())
pi=round(math.pi,7)
length=str(round(r*2*pi,6))
area=str(round(r**2*pi,6))
print("{} {}".format(length,area))
|
s166964852 | p02400 | u281808376 | 1540295731 | Python | Python3 | py | Runtime Error | 0 | 0 | 137 | r=int(input())
import math
pi=round(math.pi,7)
length=str(round(r*2*pi,6))
area=str(round(r**2*pi,6))
print("{} {}".format(length,area))
|
s307479461 | p02400 | u281808376 | 1540296810 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | r=float(input())
import math
pi=round(math.pi,7)
length=round(r*2*pi,6)
area=round(r**2*pi,6)
print(float(length)+" "+float(area))
|
s258209890 | p02400 | u075006557 | 1540456622 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | a = int(input())
print("%.6f %,6f"%(a*a*3.1415926535, 2*a*3.1415946535))
|
s780245795 | p02400 | u075006557 | 1540456899 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | x = float(input())
print("%.6f %.6"%(a*a*3.14159265, a*2*3.14159265))
|
s601597980 | p02400 | u075006557 | 1540456973 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | x = float(input())
print("%.6f %.6"%(x*x*3.141592, x*2*3.141592))
|
s450333079 | p02400 | u901205536 | 1540814448 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import math
r = int(input())
print("%.5f %.5f" % (math.pi*r *r, 2*math.pi*r))
|
s483028110 | p02400 | u260980560 | 1540906873 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | pi = 3.1415926535897
r = int(input())
print(pi*r**2, 2*pi*r)
|
s728139403 | p02400 | u596993252 | 1541060876 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a=int(input())
p=3.141592;
print("{0:.6f} {1:.6f}".format(a*a*p,a*2*p))
|
s398162403 | p02400 | u596993252 | 1541060913 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a=int(input())
p=3.141592;
print("{0:.9f} {1:.9f}".format(a*a*p,a*2*p))
|
s123279443 | p02400 | u921810101 | 1541060954 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | from math import pi
r = int(input())
print(pi*r**2, 2*pi*r)
|
s034997620 | p02400 | u921810101 | 1541060973 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | import math
pi = math.pi
r = int(input())
print(pi*r**2, 2*pi*r)
|
s903654823 | p02400 | u596993252 | 1541060977 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a=int(input())
p=3.141592
print("{0:.9f} {1:.9f}".format(a*a*p,a*2*p))
|
s439693274 | p02400 | u513141069 | 1541060996 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a, b = map(int, input().split())
print("{0} {1} {2:.8f}".format(a // b, a % b, a / b))
|
s515912126 | p02400 | u921810101 | 1541061016 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | import math
pi = math.pi
r = int(input())
print(pi*r*r, 2*pi*r)
|
s202209697 | p02400 | u513141069 | 1541061021 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import math
r = int(input())
print(f'{math.pi * r ** 2} {2 * math.pi * r}')
|
s005641484 | p02400 | u596993252 | 1541061029 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | a=int(input())
p=3.141592
print("{0:.8f} {1:.8f}".format(a*a*p,a*2*p))
|
s658031210 | p02400 | u861678859 | 1541061040 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | p = 3.141592
r = int(input())
print("{0:.6f}{1:.6f}",format(r*2 * p,2 * r * p))
|
s624276079 | p02400 | u035064179 | 1541061094 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | import <math.h>
r = float(input())
a = math.pi * r * r
l = 2 * math.pi * r
print(f'{a} {l}')
|
s584490867 | p02400 | u861678859 | 1541061237 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | import math
r = float(input())
print(f'{math.pi * r ** 2} {2 * math,pi * r}')
|
s485851262 | p02400 | u587288800 | 1541061270 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | import math
r = int(input())
print(f' {math.pi * r ** 2} {math.pi * r * 2}')
|
s068425639 | p02400 | u587288800 | 1541061310 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | import math
r = int(input())
print(f' {math.pi * r ** 2}{math.pi * r * 2}')
|
s190801068 | p02400 | u587288800 | 1541061357 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | import math
r = floatinput())
print(f' {math.pi * r ** 2} {math.pi * r * 2}')
|
s144634557 | p02400 | u109843748 | 1545483683 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | import sys,math
def solve():
a, = map(int,input().split())
print(a**2*math.pi ,a*2*math.pi)
solve()
|
s524247681 | p02400 | u962909487 | 1545837529 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | r = int,input()
area = "{:.6f}".format(π*(r*r))
circumference = "{:.6f}".format(2*π*r)
print(area, circumference)
|
s222756477 | p02400 | u962909487 | 1545837584 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | r = int(input())
area = "{:.6f}".format(π*(r*r))
circumference = "{:.6f}".format(2*π*r)
print(area, circumference)
|
s516830347 | p02400 | u962909487 | 1545837633 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | r = int(input())
print("{:.6f}".format(π*(r*r)),"{:.6f}".format(2*π*r))
|
s777021027 | p02400 | u962909487 | 1545837688 | Python | Python3 | py | Runtime Error | 0 | 0 | 127 | r = int(input())
area = "{:.6f}".format(math.pi*(r*r))
circumference = "{:.6f}".format(2*r*math.pi)
print(area, circumference)
|
s901096827 | p02400 | u962909487 | 1545837717 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | import math
r = int(input())
area = "{:.6f}".format(math.pi*(r*r))
circumference = "{:.6f}".format(2*r*math.pi)
print(area, circumference)
|
s895969059 | p02400 | u643542669 | 1545873334 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | import math
r = int(inpu())
print(r ** 2 * math.pi, r * 2 * math.pi)
|
s802858500 | p02400 | u643542669 | 1545873342 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | import math
r = int(input())
print(r ** 2 * math.pi, r * 2 * math.pi)
|
s746052086 | p02400 | u643542669 | 1545873418 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | import math
r = int(input())
print(r ** 2 * math.pi, r * 2 * math.pi)
|
s075858822 | p02400 | u643542669 | 1545873488 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | import math
r = input()
print(r ** 2 * math.pi, r * 2 * math.pi)
|
s927232629 | p02400 | u316246166 | 1545906857 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | a = int(input())
print(a * a * pi, 2* a * pi)
|
s894302766 | p02400 | u316246166 | 1545906877 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a = input()
a = int(a)
print(a * a * pi, 2* a * pi)
|
s856780838 | p02400 | u316246166 | 1545906940 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a = float(input())
print(a * a * pi, 2* a * pi)
|
s751929783 | p02400 | u550922601 | 1546167751 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 |
import math
pai = math.pi
print(pai)
r = int(input())
print('{:.6f} {:.6f}'.format(pai*r**2,2*pai*r))
|
s169092138 | p02400 | u550922601 | 1546167801 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | import math
pai = math.pi
r = int(input())
print('{:.6f} {:.6f}'.format(pai*r**2,2*pai*r))
|
s915753108 | p02400 | u550922601 | 1546167881 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | import math
pai = math.pi
r = int(input())
print('{:.6f} {:.6f}'.format(pai*r**2,2*pai*r))
|
s154597804 | p02400 | u598393390 | 1551246147 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | from math import pi
r = int(input())
print(r ** 2 * pi, 2 * r * pi)
|
s156665049 | p02400 | u733357255 | 1551448114 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 |
pi = 3.141592653589
r = float(input())
print("{.5f} {.5f}".format(r*r*pi,2*pi*r))
|
s890962513 | p02400 | u733357255 | 1551508070 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 |
pi = 3.141592653589
r = float(input())
print("{.5f} {.5f}".format(r*r*pi,2*pi*r))
|
s043465457 | p02400 | u733357255 | 1551508335 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 |
pi = 3.141592653589
r = float(input())
print(r*r*pi,2*pi*r
|
s580771518 | p02400 | u175224634 | 1551538000 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | a = map(int, input().split())
print(f'{2 * a * 3.141592653589}')
print(f'{a * a * 3.141592653589}')
|
s788573113 | p02400 | u175224634 | 1551539322 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | a = map(int, input().split())
print(f'{2 * a * 3.1415926}')
print(f'{a * a * 3.1415926}')
|
s831580934 | p02400 | u175224634 | 1551539358 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | a = map(int, input().split())
print(f'{a * a * 3.1415926}')
print(f'{2 * a * 3.1415926}')
|
s076340987 | p02400 | u175224634 | 1551539391 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a = map(float, input().split())
print(f'{a * a * 3.1415926}')
print(f'{2 * a * 3.1415926}')
|
s114002553 | p02400 | u175224634 | 1551539503 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a = map(float, input().split())
print(f'{a * a * 3.1415926}')
print(f'{2 * a * 3.1415926}')
|
s158305972 | p02400 | u175224634 | 1551539582 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a = map(float, input().split())
print(f'{a * a * 3.1415926} {2 * a * 3.1415926}')
|
s248942113 | p02400 | u175224634 | 1551539633 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a = list(map(float, input().split()))
print(f'{a * a * 3.1415926} {2 * a * 3.1415926}')
|
s552212648 | p02400 | u984892564 | 1551543730 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | string = input()
number = int(string[0])
print(number^2*3.14159, number*2*3.14159)
|
s634781279 | p02400 | u967268722 | 1555776452 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | s = float(i)**2 * 3.14159265359
l = float(i)*2*3.14159265359
print(s, l)
|
s439170230 | p02400 | u638889288 | 1555899181 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | imporot math
r=float(input())
print("%0.5f %0.5f" %(r*r*math.pi,2*r*math.pi))
|
s105619101 | p02400 | u605451279 | 1555935391 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | import math
r = int(input())
s = r * r * math.pi
l = 2 * r * math.pi
print(s,l)
|
s561593286 | p02400 | u605451279 | 1555935993 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | import math
r = int(input())
s = '{:.6f}'.format(r * r * math.pi)
l = '{:.6f}'.format(2 * r * math.pi)
print(s,l)
|
s799296094 | p02400 | u227363693 | 1555997809 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | import math
r = int(input())
print("{:.6f}".format(r*r*math.pi), "{:.6f}".format(2*r*math.pi))
|
s579973324 | p02400 | u780342333 | 1556021444 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | pi = 3.14159265359
r = int(input())
print(f"{r*r*pi:.6f} {2*r*pi:.6f}")
|
s671312609 | p02400 | u780342333 | 1556021528 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | pi = 3.14159265359
r = int(input())
print(f"{r*r*pi:.6f} {2*r*pi:.6f}")
|
s894633553 | p02400 | u229478139 | 1556025156 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | import math
r = int(input())
print('{:.5f} {:.5f}'.format(math.pi*r*r, 2*math.pi*r))
|
s133175075 | p02400 | u037441960 | 1556031099 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | import math
r = int(input())
s = r ** 2 * math.pi
l = 2 * r * math.pi
print("{:.5f}".format(s), "{:.5f}".format(l))
|
s566248554 | p02400 | u037441960 | 1556031164 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | import math
r = int(input())
s = r ** 2 * math.pi
l = 2 * r * math.pi
print("{:.6f}".format(s), "{:.6f}".format(l))
|
s998653608 | p02400 | u264450287 | 1556072078 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | r = int(input())
import math
pi = math.pi
s = r*r*pi
l = 2*r*pi
print("{:.6f}".format(s),"{:.6f}".format(l))
|
s085462120 | p02400 | u264450287 | 1556072146 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | r = int(input())
import math
pi = math.pi
s = r*r*pi
l = 2*r*pi
print("{:.6f}".format(s),"{:.6f}".format(l))
|
s512642394 | p02400 | u264450287 | 1556072318 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | r = int(input())
import math
pi = math.pi
s = r*r*pi
l = 2*r*pi
print("{:.6f}".format(s),"{:.6f}".format(l))
|
s754658889 | p02400 | u264450287 | 1556072357 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | r = int(input())
pi = math.pi
s = r*r*pi
l = 2*r*pi
print("{:.6f}".format(s),"{:.6f}".format(l))
|
s193152003 | p02400 | u264450287 | 1556072475 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | r = int(input())
from math import pi
s = r*r*pi
l = 2*r*pi
print("{:.6f}".format(s),"{:.6f}".format(l))
|
s263353614 | p02400 | u110227199 | 1556097343 | Python | Python3 | py | Runtime Error | 0 | 0 | 3 | a
|
s536045493 | p02400 | u592815095 | 1556203943 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | import math;r=int(input());print(math.pi*(r**2),math.pi*r*2)
|
s239602429 | p02400 | u592815095 | 1556204041 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | import math;r,p=int(input()),3.141592653589793238462643;print(p*(r**2),p*r*2)
|
s741878963 | p02400 | u592815095 | 1556204047 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | r,p=int(input()),3.141592653589793238462643;print(p*(r**2),p*r*2)
|
s584753177 | p02400 | u592815095 | 1556204064 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | r,p=int(input()),3.141592653589
print(p*(r**2),p*r*2)
|
s911364353 | p02400 | u521569208 | 1556235875 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | import math
r=int(input())
area=r**2*math.pi
circumference=r*2*math.pi
print("{0:.5f} {1:.5f}".format(area,circumference))
|
s196108646 | p02400 | u521569208 | 1556235914 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | pi=3.141592653589793
r=int(input())
area=r**2*pi
circumference=r*2*pi
print("{0:.5f} {1:.5f}".format(area,circumference))
|
s883587158 | p02400 | u242221792 | 1556237689 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | import math
p = math.pi
r = int(input())
print("{} {}",format(2*r*p, r*r*p))
|
s933999917 | p02400 | u904226154 | 1556264228 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | import math
a = int(input())
print(str("{0:.6f}".format((a * a) * math.pi)) + " " + str("{0:.5f}".format((a + a) * math.pi)))
|
s046545002 | p02400 | u904226154 | 1556264356 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | import math
a = int(input())
print(str("{0:.6f}".format((a * a) * math.pi)) + " " + str("{0:.5f}".format((a + a) * math.pi)))
|
s546975158 | p02400 | u482227082 | 1556416256 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | r = int(input().split)
print("%.5f %.5f" %(r**2*3.14, 2*r*3.14))
|
s030237032 | p02400 | u482227082 | 1556416274 | Python | Python3 | py | Runtime Error | 0 | 0 | 67 | r = float(input().split)
print("%.5f %.5f" %(r**2*3.14, 2*r*3.14))
|
s660418124 | p02400 | u482227082 | 1556416283 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | r = float(input().split())
print("%.5f %.5f" %(r**2*3.14, 2*r*3.14))
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.