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 s. 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 s.
Input
The first and only line contains the word s, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
Output
If Vasya managed to say hello, print “YES”, otherwise print “NO”.
Examples
inputCopy
ahhellllloou
outputCopy
YES
inputCopy
hlelo
outputCopy
NO
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<ctime>
#include<iostream>
#include<algorithm>
#include<map>
#include<stack>
#include<queue>
#include<vector>
#include<set>
#include<string>
#define ll long long
#define dd double
using namespace std;
int main() {
ios::sync_with_stdio(false);
string s; cin >> s;
ll flag = 0;
for (ll i = 0; i < s.size(); i++) {
if (flag == 0) {
if (s[i] == 'h' || s[i] == 'H') {
flag = 1;
}
}
else if (flag == 1) {
if (s[i] == 'e' || s[i] == 'E') {
flag = 2;
}
}
else if (flag == 2) {
if (s[i] == 'l' || s[i] == 'L') {
flag = 3;
}
}
else if (flag == 3) {
if (s[i] == 'l' || s[i] == 'L') {
flag = 4;
}
}
else if (flag == 4) {
if (s[i] == 'o' || s[i] == 'O') {
flag = 5;
}
}
}
if (flag == 5) {
cout << "YES" << endl;
}
else {
cout << "NO" << endl;
}
}