name = input("What's your name? ") if name: print(f"hello, {name}") else: print("hello, world")