Initials
Read a first name and a last name (on separate lines), then print the initials (first letter of each).
Example:
Input:
text
Alex Smith
Output:
text
AS
Hint: You can get the first letter of a string with name[0].
💡 Hints
?Hint 1
🔒Hint 2
🔒Hint 3
python