• + 0 comments
    import re
    
    T = int(input())
    
    for _ in range(T):  
        try:
            x = re.search(input(), "eheheh")
            print("True")   
        except:
            print("False")