6 lines
131 B
Python
6 lines
131 B
Python
|
print("hello world!\n")
|
||
|
for i in range(10):
|
||
|
if(i<9):
|
||
|
print((i)*"hello-"+"hello")
|
||
|
elif(i==0):
|
||
|
print("hello")
|