Skip to content

Commit 8dd1fec

Browse files
committed
Выводит считываемые числа и вывводит их повторенное количество n раз
1 parent 2de437c commit 8dd1fec

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
def rep_cat(x, y):
2+
return str(x) * 10 + str(y) * 5
3+
4+
5+
print(rep_cat(3, 4))

0 commit comments

Comments
 (0)