CF58A.Chat room

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word ss . It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, if Vasya types the word "ahhellllloou", it will be considered that he said hello, and if he types "hlelo", it will be considered that Vasya got misunderstood and he didn't manage to say hello. Determine whether Vasya managed to say hello by the given word ss .

输入格式

The first and only line contains the word ss , which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.

输出格式

If Vasya managed to say hello, print "YES", otherwise print "NO".

输入输出样例

  • 输入#1

    ahhellllloou
    

    输出#1

    YES
    
  • 输入#2

    hlelo
    

    输出#2

    NO
    
首页