#HITACHI2020A. Hitachi String

Hitachi String

Score : 100100 points

Problem Statement

A Hitachi string is a concatenation of one or more copies of the string hi.

For example, hi and hihi are Hitachi strings, while ha and hii are not.

Given a string SS, determine whether SS is a Hitachi string.

Constraints

  • The length of SS is between 11 and 1010 (inclusive).
  • SS is a string consisting of lowercase English letters.

Input

Input is given from Standard Input in the following format:

SS

Output

If SS is a Hitachi string, print Yes; otherwise, print No.

hihi
Yes

hihi is the concatenation of two copies of hi, so it is a Hitachi string.

hi
Yes
ha
No