message
stringlengths
2
30.5k
message_type
stringclasses
2 values
message_id
int64
0
1
conversation_id
int64
237
109k
cluster
float64
10
10
__index_level_0__
int64
474
217k
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are playing a very popular game called Cubecraft. Initially, you have one stick and want to craft k torches. One torch can be crafted using one stick and one coal. Hopefully, you've met a v...
instruction
0
51,547
10
103,094
Yes
output
1
51,547
10
103,095
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are playing a very popular game called Cubecraft. Initially, you have one stick and want to craft k torches. One torch can be crafted using one stick and one coal. Hopefully, you've met a v...
instruction
0
51,548
10
103,096
No
output
1
51,548
10
103,097
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are playing a very popular game called Cubecraft. Initially, you have one stick and want to craft k torches. One torch can be crafted using one stick and one coal. Hopefully, you've met a v...
instruction
0
51,549
10
103,098
No
output
1
51,549
10
103,099
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are playing a very popular game called Cubecraft. Initially, you have one stick and want to craft k torches. One torch can be crafted using one stick and one coal. Hopefully, you've met a v...
instruction
0
51,550
10
103,100
No
output
1
51,550
10
103,101
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are playing a very popular game called Cubecraft. Initially, you have one stick and want to craft k torches. One torch can be crafted using one stick and one coal. Hopefully, you've met a v...
instruction
0
51,551
10
103,102
No
output
1
51,551
10
103,103
Provide tags and a correct Python 3 solution for this coding contest problem. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potion is the ratio of the amount of experience to t...
instruction
0
51,810
10
103,620
Tags: brute force, two pointers Correct Solution: ``` def play(l, r, x, y, k): for i in range(x, y + 1): if l <= k * i <= r: return "YES" return "NO" L, R, X, Y, K = [int(j) for j in input().split()] print(play(L, R, X, Y, K)) ```
output
1
51,810
10
103,621
Provide tags and a correct Python 3 solution for this coding contest problem. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potion is the ratio of the amount of experience to t...
instruction
0
51,811
10
103,622
Tags: brute force, two pointers Correct Solution: ``` l,r,x,y,k=map(float,input().split()) lis=[] l=int(l) r=int(r) x=int(x) y=int(y) for i in range(x,y+1): lis+=[i] mid=0 while(len(lis)!=0): mid = int((len(lis)/2)//1) if lis[mid]*k>=l and lis[mid]*k<=r and lis[mid]*k.is_integer(): print("YES") ...
output
1
51,811
10
103,623
Provide tags and a correct Python 3 solution for this coding contest problem. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potion is the ratio of the amount of experience to t...
instruction
0
51,812
10
103,624
Tags: brute force, two pointers Correct Solution: ``` l,r,x,y,k=map(int,input().split()) if (x*k<r and y*k>l): if ((r//k)-((l-1)//k))>0 and r!=l: print("YES") elif l==r and l%k==0: print("YES") else: print("NO") elif (x*k==r or y*k==l or x*k==l or x*k==r): print("YES") else: ...
output
1
51,812
10
103,625
Provide tags and a correct Python 3 solution for this coding contest problem. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potion is the ratio of the amount of experience to t...
instruction
0
51,813
10
103,626
Tags: brute force, two pointers Correct Solution: ``` I = lambda: map(int, input().rstrip().split()) l, r, x, y, k = I() for cost in range(x, y + 1): if r >= cost * k >= l: print("YES") exit() print("NO") ```
output
1
51,813
10
103,627
Provide tags and a correct Python 3 solution for this coding contest problem. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potion is the ratio of the amount of experience to t...
instruction
0
51,814
10
103,628
Tags: brute force, two pointers Correct Solution: ``` l,r,x,y,k=[int(a) for a in input().split()] i=l j=x s=0 while(i<=r and j<=y): d=(i/j) if(d==k): s=1 break elif(d<k): i=i+1 else: j=j+1 if(s): print("YES") else: print("NO") ```
output
1
51,814
10
103,629
Provide tags and a correct Python 3 solution for this coding contest problem. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potion is the ratio of the amount of experience to t...
instruction
0
51,815
10
103,630
Tags: brute force, two pointers Correct Solution: ``` l, r, x, y, k = map(int , input().split()) flag = "NO" for cost in range(x,y+1): value = k * cost if value>=l and value<=r: flag = "YES" break print(flag) ```
output
1
51,815
10
103,631
Provide tags and a correct Python 3 solution for this coding contest problem. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potion is the ratio of the amount of experience to t...
instruction
0
51,816
10
103,632
Tags: brute force, two pointers Correct Solution: ``` l, r, x, y, k = map(int, input().split()) if y * k < l or x * k > r: print('NO') elif y * k <= r or x * k >= l: print('YES') elif l // k == r // k and l % k != 0: print('NO') else: print('YES') ```
output
1
51,816
10
103,633
Provide tags and a correct Python 3 solution for this coding contest problem. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potion is the ratio of the amount of experience to t...
instruction
0
51,817
10
103,634
Tags: brute force, two pointers Correct Solution: ``` l, r, x, y, k = map(int, input().split()) low_ex, high_ex = x * k, y * k if high_ex < l or low_ex > r: print('NO') else: low = l // k * k up = r // k * k + k a = low b = low // k ok = 0 while a <= up: if x <= b and b <= y and l <=...
output
1
51,817
10
103,635
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potio...
instruction
0
51,818
10
103,636
Yes
output
1
51,818
10
103,637
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potio...
instruction
0
51,819
10
103,638
Yes
output
1
51,819
10
103,639
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potio...
instruction
0
51,820
10
103,640
Yes
output
1
51,820
10
103,641
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potio...
instruction
0
51,821
10
103,642
Yes
output
1
51,821
10
103,643
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potio...
instruction
0
51,822
10
103,644
No
output
1
51,822
10
103,645
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potio...
instruction
0
51,823
10
103,646
No
output
1
51,823
10
103,647
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potio...
instruction
0
51,824
10
103,648
No
output
1
51,824
10
103,649
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers β€” amount of experience and cost. The efficiency of a potio...
instruction
0
51,825
10
103,650
No
output
1
51,825
10
103,651
Provide a correct Python 3 solution for this coding contest problem. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to day. In addition, Aiz Onsen has the following rules. * Ti...
instruction
0
52,098
10
104,196
"Correct Solution: ``` N = int(input()) for _ in range(N): A = [] x, y, b, p = map(int, input().split()) s = x*b+y*p #全部バラ A.append(int(s)) wari = 0.8*(5*x+2*y) for i in range(1, 4): s = wari*i if b-(5*i)>0: s += 0.8*(b-(5*i))*x if p-(2*i)>0: s += 0.8*(p-(2*i))*y A.append(int(s)) print(min(A)) ``...
output
1
52,098
10
104,197
Provide a correct Python 3 solution for this coding contest problem. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to day. In addition, Aiz Onsen has the following rules. * Ti...
instruction
0
52,099
10
104,198
"Correct Solution: ``` N = int(input()) for i in range(N): x,y,b,p = list(map(int,input().split())) def calc(x,y,b,p): m = min(p//2,b//5) #return 0.8*(5*m*x + 2*m*y) + (b-5*m)*x + (p-2*m)*y c = x*b + y*p return 0.8*c if m > 0 else c v = [] v.append(calc(x,y,b,p)) ...
output
1
52,099
10
104,199
Provide a correct Python 3 solution for this coding contest problem. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to day. In addition, Aiz Onsen has the following rules. * Ti...
instruction
0
52,100
10
104,200
"Correct Solution: ``` N = int(input()) for i in range(N): x, y, b, p = map(int, input().split()) print(min(x*b+y*p, (x*max(b,5)+y*max(p,2))*4//5)) ```
output
1
52,100
10
104,201
Provide a correct Python 3 solution for this coding contest problem. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to day. In addition, Aiz Onsen has the following rules. * Ti...
instruction
0
52,101
10
104,202
"Correct Solution: ``` N = int(input()) xybp = [list(map(int,input().split())) for _ in range(N)] for X in xybp: x,y,b,p = X[0],X[1],X[2],X[3] kouho1 = x*b+y*p if b <= 5 and p <= 2: kouho2 = 0.8*x*5+0.8*y*2 elif b > 5 and p <= 2: kouho2 = 0.8*x*b+0.8*y*2 elif b <= 5 and p > 2: ...
output
1
52,101
10
104,203
Provide a correct Python 3 solution for this coding contest problem. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to day. In addition, Aiz Onsen has the following rules. * Ti...
instruction
0
52,102
10
104,204
"Correct Solution: ``` n = int(input()) for i in range(n): x,y,b,p = map(int,input().split()) s = x * b + y * p t = int((x * 5 + y * 2) * 0.8) u = s if s <= t: print(s) else: if 5 - b > 0: u += (5 - b) * x if 2 - p > 0: u += (2 - p) * y p...
output
1
52,102
10
104,205
Provide a correct Python 3 solution for this coding contest problem. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to day. In addition, Aiz Onsen has the following rules. * Ti...
instruction
0
52,103
10
104,206
"Correct Solution: ``` N = int(input()) for i in range(N): x, y, b, p = map(int, input().split()) print(int(min(x*b + y*p, (x*max(b, 5) + y*max(p, 2))*0.8))) ```
output
1
52,103
10
104,207
Provide a correct Python 3 solution for this coding contest problem. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to day. In addition, Aiz Onsen has the following rules. * Ti...
instruction
0
52,104
10
104,208
"Correct Solution: ``` N = int(input()) for l in range(N): x,y,b,p = [int(i) for i in input().split()] ans = x*b + y*p if b < 5: b = 5 if p < 2: p = 2 ans = min(ans, (x*b + y*p) * 4 // 5) print(ans) ```
output
1
52,104
10
104,209
Provide a correct Python 3 solution for this coding contest problem. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to day. In addition, Aiz Onsen has the following rules. * Ti...
instruction
0
52,105
10
104,210
"Correct Solution: ``` import sys f = sys.stdin n = int(f.readline()) for line in f: x, y, b, p = map(int, line.split()) regular = x * b + y * p discount = int(x * 0.8) * max(b, 5) + int(y * 0.8) * max(p, 2) print(min(regular, discount)) ```
output
1
52,105
10
104,211
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to da...
instruction
0
52,106
10
104,212
Yes
output
1
52,106
10
104,213
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to da...
instruction
0
52,107
10
104,214
Yes
output
1
52,107
10
104,215
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to da...
instruction
0
52,108
10
104,216
Yes
output
1
52,108
10
104,217
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to da...
instruction
0
52,109
10
104,218
Yes
output
1
52,109
10
104,219
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to da...
instruction
0
52,110
10
104,220
No
output
1
52,110
10
104,221
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to da...
instruction
0
52,111
10
104,222
No
output
1
52,111
10
104,223
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to da...
instruction
0
52,112
10
104,224
No
output
1
52,112
10
104,225
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Aiz Onsen has a bathhouse and a pool. To use the bathhouse, you need to buy a bathing ticket, and to use the pool, you need to buy a pool ticket. Prices for these tickets may vary from day to da...
instruction
0
52,113
10
104,226
No
output
1
52,113
10
104,227
Provide tags and a correct Python 3 solution for this coding contest problem. Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just s dollars for sugar. But that's not a reason to be sad, because...
instruction
0
52,570
10
105,140
Tags: brute force, implementation Correct Solution: ``` n, s = map(int, input().split()) a = [[int(i) for i in input().split()] for j in range(n)] ans = -1 for i in a: if i[0] + min(1, i[1]) <= s: ans = max(ans, (100 - i[1]) % 100) print(ans) ```
output
1
52,570
10
105,141
Provide tags and a correct Python 3 solution for this coding contest problem. Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just s dollars for sugar. But that's not a reason to be sad, because...
instruction
0
52,571
10
105,142
Tags: brute force, implementation Correct Solution: ``` n,s=map(int,input().split()) mx,fg=0,0 for i in range(0,n): a,b=map(int,input().split()) if b!=0: if (a+1)<=s: fg=1 mx=max(mx,100-b) elif a<=s: fg=1 if fg==0:print(-1) else:print(mx) ```
output
1
52,571
10
105,143
Provide tags and a correct Python 3 solution for this coding contest problem. Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just s dollars for sugar. But that's not a reason to be sad, because...
instruction
0
52,572
10
105,144
Tags: brute force, implementation Correct Solution: ``` n, s = map(int, input().split()) s = s * 100 max_ost = -1 for i in range(n): x, y = map(int, input().split()) if s >= x * 100 + y: max_ost = max(max_ost, (s - (x * 100 + y)) % 100) print(max_ost) ```
output
1
52,572
10
105,145
Provide tags and a correct Python 3 solution for this coding contest problem. Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just s dollars for sugar. But that's not a reason to be sad, because...
instruction
0
52,573
10
105,146
Tags: brute force, implementation Correct Solution: ``` n, s = map(int, input().split()) ans = -1 for _ in range(n): x, y = map(int, input().split()) if x*100+y <= s*100: ans = max(ans, (100*s-x*100-y)%100) print(ans) ```
output
1
52,573
10
105,147
Provide tags and a correct Python 3 solution for this coding contest problem. Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just s dollars for sugar. But that's not a reason to be sad, because...
instruction
0
52,574
10
105,148
Tags: brute force, implementation Correct Solution: ``` n, s = map(int, input().split()) mn = 101 zero = False for i in range(n): d, c = map(int, input().split()) if d==s and c==0: zero = True continue if d<s and c<mn: if c==0: zero = True else: mn=c if mn>100 and zero: print ("0") elif mn>100: print...
output
1
52,574
10
105,149
Provide tags and a correct Python 3 solution for this coding contest problem. Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just s dollars for sugar. But that's not a reason to be sad, because...
instruction
0
52,575
10
105,150
Tags: brute force, implementation Correct Solution: ``` n, s = map(int, input().split()) ans = -1 for i in range(n): x, y = map(int, input().split()) if 100 * x + y > 100 * s: continue ans = max(ans, 0 if y == 0 else 100 - y) print(ans) ```
output
1
52,575
10
105,151
Provide tags and a correct Python 3 solution for this coding contest problem. Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just s dollars for sugar. But that's not a reason to be sad, because...
instruction
0
52,576
10
105,152
Tags: brute force, implementation Correct Solution: ``` inp = lambda : [*map(int, input().split())] n, s = inp() s *= 100 ans = -1 for i in range(n): x, y = inp() if x * 100 + y <= s: ans = max(ans, (100 - y) % 100) print(ans) ```
output
1
52,576
10
105,153
Provide tags and a correct Python 3 solution for this coding contest problem. Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just s dollars for sugar. But that's not a reason to be sad, because...
instruction
0
52,577
10
105,154
Tags: brute force, implementation Correct Solution: ``` import sys n, s = [int(x) for x in (sys.stdin.readline()).split()] result = -1 for c in range(n): x, y = [int(x) for x in (sys.stdin.readline()).split()] t = x if(y > 0): t += 1 if(t <= s): a = 100 - y if(a == 10...
output
1
52,577
10
105,155
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just s dollars for su...
instruction
0
52,578
10
105,156
Yes
output
1
52,578
10
105,157
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just s dollars for su...
instruction
0
52,579
10
105,158
Yes
output
1
52,579
10
105,159
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just s dollars for su...
instruction
0
52,580
10
105,160
Yes
output
1
52,580
10
105,161
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just s dollars for su...
instruction
0
52,581
10
105,162
Yes
output
1
52,581
10
105,163
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just s dollars for su...
instruction
0
52,582
10
105,164
No
output
1
52,582
10
105,165