Answer:
#program in Python
#variables
given="John"
middle="Fitzgerald"
family="Kennedy"
#find first character of each variable and ptint
print("{}.{}.{}".format(given[0],middle[0],family[0]))
Explanation:
Declare and initialize variables "given" with "John","middle" with "Fitzgerald" and "family" wit "Kennedy".Print the first character of each variables separated by a "." in between of each character.
Output:
J.F.K