# SPDX-License-Identifier: MIT
"""A console application using Python input through shared D/OS services."""
print("d/Python console input")
try:
    name = input("Your name: ").strip()
    if not name:
        name = "friend"
    print(f"Hello, {name}!")
except EOFError:
    print("\nNo input was provided.")
