from random import*;s=input();n=randint(1,len(s)-1);print(s[:n],'~BOO!~',s[n:])