10 ? "Deposits:"20 ? "----+-------+-------------"30 ? "Type|Time |Interest rate"40 ? "----+-------+-------------"50 ? " 1|3 month| 27%"60 ? " 2|6 month| 29%"70 ? " 3|1 year | 30%"80 ? "----+-------+-------------"90 INPUT "What type of deposit"; T100 IF T=1 THEN LET I=.27/4110 IF T=2 THEN LET I=.29/2120 IF T=3 THEN LET I=.3130 INPUT "How many $ are put"; A140 LET A=A*(1+I)150 ? "Will receive $"; A160 END