7 lines
170 B
Python
7 lines
170 B
Python
![]() |
name = str(input('Enter your name : '))
|
||
|
number = int(input('Enter repeat number : '))
|
||
|
for i in range(0, number):
|
||
|
for j in name:
|
||
|
print(j+'\n')
|
||
|
print(name)
|