Password Generator
Write a function make_password(word, number) that returns the word followed by the number followed by !.
Read a word and number, then print the password.
Example:
Input:
text
cat 42
Output:
text
cat42!
💡 Hints
?Hint 1
🔒Hint 2
🔒Hint 3
python