Start Program Initialize constant integer DAYS_PER_YEAR = 365 Initialize function GetAge() Initialize function CalcDays(int age) Initialize function PrintResults(int age, int days) Initialize integer age = 0 Initialize integer days = 0 run function GetAge() Ask user for their age and store value as age return age run function CalcDays(age) multiply age by DAYS_PER_YEAR return days set output of CalcDays = days run function PrintResults(days, age) Output user's age with sentence that tells them how many days they are old at least End Program