s = "hello world"
for c in s:
    if c==' ':
        print "</br>"
    else:
        print c,
