This commit is contained in:
2023-07-25 09:14:22 +02:00
parent 7f4f85f804
commit 52ed4d25f8

5
zoom.py Normal file
View File

@@ -0,0 +1,5 @@
n, k = map(int, input().split())
x = list(map(int, input().split()))
for i in range(k - 1, n, k):
print(x[i])