View Code of Problem 84

import sys
for str in sys.stdin.readlines():
    t=str.lower()
    if t.find('salt')>=0:
        print(str)

Double click to view unformatted code.


Back to problem 84