PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
s = input()
def hashtagGen(text):
# место для вашего кода
text = "#"+s
if " " in s:
s1 = text.replace(" ","")
print(s1)
else:
return text
print(hashtagGen(s))
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run