#list states_list is created with two states read from input.
# Then, list names_list is created with two names read from input. On one line , Output:
# names_list's first element
# 'is from'
# states_list's second element
# a period ('.')
states_list = [input(), input()]
names_list = [input(), input()]
print(f" {names_list[0]} is from {states_list[1]}.")
To embed this project on your website, copy the following code and paste it into your website's HTML: