# idk if this will work but random projkect :3

import random, re, time
Decor = lambda x : [":3","meow","Nyaa",":P",":D","^-^",""][x%7]
RegexDict = [
("hello|hi|h(i|e)y+a*",lambda x : [f"Hello {Decor(x)}",f"hiy{"a"*x}","Hiyyaa"][x%3]), #hello, greetings
("((good)*bye+)|see (ya|you|u)", lambda x : [f"{Decor(x)} bye","see yoouu!",f"Nap time -_-","YAWN -_-"][x%4]), #byes
("how+.*you.*\?|\?.*you", lambda x : [f"Im good {Decor(x)}","Im ok",f"AHHHH{""*x}"][x%3]), #asking about there how they are
("who+.*you.*\?|\?.*you", lambda x : f"Im Regex clock kitty a test in regex langauge processing"), #asking about there who they are
("time.*\?", lambda x : f"The time is {time.strftime("%H:%M:%S", time.gmtime())} {Decor(x)}") #asking current time
]
compute = lambda UI : " ".join([check[1](random.randint(1,15)) if re.search(check[0], UI.lower()) else "" for check in RegexDict])
[print(compute(str(input()))) for i in range(100)