s = input() w = '' l = ("abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz") for i in s: if 97 <= ord(i) <= 122:  ...