Program Python, który przyjmuje 2 słowa jako dane wejściowe od użytkownika i drukuje listę zawierającą litery, które 2 słowa mają wspólnego

firstWord = input("Enter the First word: ").lower()
secondWord = input("Enter the Second word: ").lower()
print("----------------------")
hehe = []
for i in firstWord:
    for j in secondWord:
        if i == j:
            hehe.append(j)

print(hehe)
print("----------------------")
Awmrit