Program DisplayTotal; uses crt; var price,total : Real;
uses crt;
var price,total : Real;
if total > 100 then total := total * 0.95;
Writeln('Then total price was: $', total : 0 :2); readln; end.