def greetings ():
name = input('What is your first name? ')
print( 'Hi ' + name + '! Hope you are doing well.')
age = input('How old are you? ')
print('Great, thank you!')
city = input('What city do you live in? ')
state = input('What is the state? ')
print(f'Perfect! So your name is {name}, you are {age} years old, and you live in {city},{state}.')