5 lines
69 B
Python
5 lines
69 B
Python
|
for c in "Hello":
|
||
|
print(c)
|
||
|
for c in "Привет":
|
||
|
print(c)
|