import string
a=input()
# for i in a:
#     if(i=='!' or i=='@' or i=='$' or i=='%' or i=='^' or i=='&' or i=='*' or i=='+' or i=='-' or i=='/'):
for i in string.punctuation: 
    a=a.replace(i,"#")
print(a)        

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: