words = ["alfa", "bravo", "charlie", "delta", "echo", "foxtrot", "golf", "hotel", "india", "juliett", "kilo",
"lima", "mike", "november", "oscar", "papa", "quebec", "romeo", "sierra", "tango", "uniform", "victor", "whiskey", "xray", "yankee", "zulu"]

inp = input().lower()
output = ""

for letter in inp:
    for word in words:
        if letter == word[0]:
            output += word + " "

print(inp + "\n" + output)
whatever
whiskey hotel alfa tango echo victor echo romeo 
keypad = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [" ", 0, " "]]


def print_matrix3(matrix):
    for i in matrix:
        print(*i)
        
print_matrix3(keypad)
1 2 3
4 5 6
7 8 9
  0  
keyboard = [["`", 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, "-", "="],
            ["Q", "W", "E", "R", "T", "Y", "U", "I", "O", "P", "[", "]"],
            ["A", "S", "D", "F", "G", "H", "J", "K", "L", ";", "'"],
            ["Z", "X", "C", "V", "B", "N", "M", ",", ".", "/"]]

# Birth Month
print(str(keyboard[3][5]) + str(keyboard[1][8]) + str(keyboard[3][3]) + str(keyboard[1][2]) + str(keyboard[3][6]) + str(keyboard[3][4]) + str(keyboard[1][2]) + str(keyboard[1][3]))
# Age
print(str(keyboard[0][1]) + str(keyboard[0][6]))
NOVEMBER
16