View Code of Problem 84

while True:
    str=input()
    if not str:
        break
    t=str.lower()
    if t.find('salt')>=0:
        print(str)

Double click to view unformatted code.


Back to problem 84