Run ID:143445

提交时间:2026-01-15 13:35:41

a=["bowl","knife","fork","chopsticks"] while True: s=input().split() for i in s[1:]: if i in a: print(i,end=" ") print()