13 lines
251 B
Python
13 lines
251 B
Python
def main():
|
|
greeting = input("Greeting:\t\t").lower().strip()
|
|
if greeting.startswith("hello"):
|
|
print("$0")
|
|
elif greeting.startswith("h"):
|
|
print("$20")
|
|
else:
|
|
print("$100")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|