diff --git a/solutions/58A.py b/solutions/58A.py new file mode 100644 index 0000000..1de213b --- /dev/null +++ b/solutions/58A.py @@ -0,0 +1,10 @@ +import re + +s = input() + +matches = re.findall(r"[a-z]*h[a-z]*e[a-z]*l[a-z]*l[a-z]*o", s) + +if len(matches) >= 1: + print("YES") +else: + print("NO")