print(‘Hello, my name is Steph. What is your name?’)
name = input() # asks the user for their name
print(‘Hello ‘ + (name) + ‘,’ + ‘ it is nice to meet you! What is your age?’)
retirement_age = int(65) # I am using 65 as the retirement age in this program
current_age = input() # relies on the user to input their numerical age
years_person_has_been_retired = int(current_age) – int(65) # calculates how long a person has been retired using (x – 65). IE: (80-65) = 15; meaning this person has been retired for 15 years
years_until_retirement = int(retirement_age) – int(current_age) # calculates how long a person under the age of 65 has until retirement using (65 – x). IE: (65 – 24) = 41; meaning this person has 41 more years before they reach the retirement age
if current_age < str(65):
https://www.solvedcollegepapers.com/product/cmit-135-45-cmit135-45-cmitpy
https://www.solvedcollegepapers.com/product/cmit-135-45-cmit135-45-cmitg8