print"Enter the starting amount: "; $startAmount = ; while($startAmount == ""){ print"Numbers only! Try again: "; $startAmount = ; };chomp($startAmount); print"Enter your current age: "; $startAge = ; while($startAge == ""){ print"Numbers only! Try again: "; $startAge = ; };chomp($startAge); print"Enter the age you want to retire: "; $endAge = ; while($endAge == ""){ if($endAge >= $startAge){ print"Age you want to retire must be greater than current age\n"; $endAge = ; }#ends if else{ print"Numbers only! Try again: "; $endAge = ; }#ends else };chomp($endAge); print "Enter amount deposited per year: "; $yearlyDeposit = ; chomp($yearlyDeposit); print "Enter the Annual interest rate: "; $annualInterest = ; chomp($annualInterest); print "Enter Expected Retirement Money: "; $expectedMoney = ; chomp($expectedMoney); system("pause");