commit ad335f334effca52533b257390aa5c115f23df17 Author: bot50 Date: Fri Mar 22 07:35:32 2024 +0000 kukemuna-cs50/problems/2024/x/sentimental/hello@20240322T073532.403497771Z diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..4cb3b67 --- /dev/null +++ b/hello.py @@ -0,0 +1,6 @@ +name = input("What's your name? ") + +if name: + print(f"hello, {name}") +else: + print("hello, world")