#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Program Name: Hello World Full Version
Author: lin
Date: 2026-02-26
Function: Display greeting and interact with the user
"""
def main():
# Display welcome message
print("=====================================")
print(" Hello World ! π ")
print("=====================================")
# Get user input
name = input("What is your name? ").strip()
if name == "":
name = "Mysterious Friend"
# Output personalized greeting
print(f"\nHello, {name}! Nice to meet you~")
print("How are you feeling today? Hope you have a wonderful day! π")
# End of simple interaction
print("\nProgram finished, press Enter to exit...")
input()
if __name__ == "__main__":
main()