import os
def print_banner(title=""):
os.system('cls')
print("""
BANNER GOES HERE!!!
""")
total_len = 80
if title:
padding = total_len - len(title) - 4
print("== {} {}
".format(title, "=" * padding))
else:
print("{}
".format("=" * total_len))