╣ 000104231635 +07

# Function returns the mantra
#   Why you suffer

def youSuffer():
    print("""
    that others
    may know love
    and compassion.
    """)

 

# call mantra function
# Caution: inifite loop
while True:
    youSuffer()

"""
that others
may know love
and compassion.
"""