firstname = input("What is your first name? ") lastname = input("What is your last name name? ") age = int(input("How old are you? ")) height = float(input("What height are you in metres? ")) print("Hello", firstname, lastname, "you are", age, "years old and you are", height, "metres tall. Is that correct?") response = input("Please type 'yes' or 'no': ").lower() if response == "yes": print("Thanks for your confimation, our system will be seeing you imediatly, welcome to yourJ new home Mr", lastname) elif response == "no": print("Due to the lack of correct answering, you and your body will now be exterminated, Please remained seated while the process initiates.") else: print("Invalid response. Please restart the program and answer with 'yes' or 'no'. if this happens again, your response will be recorded as invaled and you will be executed.")