Initials

Report a typo

Find the first letter of a person's name and print it out.

Make use of the variable name that stores a string.

Sample Input 1:

Kate

Sample Output 1:

K
Write a program in Python 3
# the following line reads the name from the input, do not modify it, please
name = input()

# your code here
___

Create a free account to access the full topic