This commit is contained in:
2023-07-18 13:29:10 +00:00
parent 824bc3ee7c
commit 18e5789449

16
skener.py Normal file
View File

@@ -0,0 +1,16 @@
r, c, zr, zc = map(int, input().split())
rows = []
for _ in range(r):
row = input()
new_row = []
for c in row:
new_row += [
c,
] * zc
rows += [
new_row,
] * zr
for row in rows:
print("".join(row))