#!/usr/bin/python3 def hello(s: str) -> None: print(f"Hello {s}") if __name__ == "__main__": hello("World")