```pythonimport randomimport timemessages = ["おなかすいた", "ぐうぐう", "なにかたべたい", "もぐもぐ"]def random_hunger_message(): while True: print(random.choice(messages)) time.sleep(random.randint(1, 3))random_hunger_message()```ぬこぬこ