#hitachi2020a. [hitachi2020_a]Hitachi String
[hitachi2020_a]Hitachi String
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 , determine whether is a Hitachi string.
Constraints
- The length of is between and (inclusive).
- is a string consisting of lowercase English letters.
Input
Input is given from Standard Input in the following format:
Output
If is a Hitachi string, print Yes
; otherwise, print No
.
Sample Input 1
hihi
Sample Output 1
Yes
hihi
is the concatenation of two copies of hi
, so it is a Hitachi string.
Sample Input 2
hi
Sample Output 2
Yes
Sample Input 3
ha
Sample Output 3
No