''' Purpose: solve future problem test problem ''' # constants of interest FUTURE_YEAR_OF_INTEREST = 2100 CURRENT_YEAR_OF_INTERST = 2019 # Suggested algorithm # get user to supply an age # convert user reply to integer # compute difference in years between the future and current years of interest # compute future age -- sum of age and difference in years between now and then # print the result of the computation