View Code of Problem 84

while True:
    try:
        s=input()
        t=s.lower()
        if 'salt' in t:
            print(s)
    except:
        break

Double click to view unformatted code.


Back to problem 84