You are given a string text representing a message.
Return a bool that is True if the message is a greeting — meaning it starts with the word hello — and False otherwise.
Rules:
"HELLO", "Hello", "hello" all count)." hello there" still counts as a greeting.hello appears later but not at the start (like "well hello") returns False.NOTE: This is a function-type question — you only write the function. Do not read input or print anything; a hidden checker calls your function and checks its return value.
Arguments
'Hello there'
Returns
True