def main() -> None: """Print 'Hello, World!' to standard output.""" print('Hello, World!') if __name__ == '__main__': main()