# -*- coding: utf-8 -*-
"""
Created on Sun May 9 00:00:00 2021
@author: Your Name
"""
def happy_mothers_day():
"""
This function prints a message to wish Happy Mother's Day to all the mothers out there!
"""
print("Happy Mother's Day to all the amazing mothers out there!")
print("Thank you for your unconditional love, support and sacrifices.")
print("You are the backbone of our families and we are forever grateful for everything you do.")
print("Wishing you a day filled with love, joy and happiness!")
# Call the function to wish Happy Mother's Day
happy_mothers_day()