program AAA12011;
uses Crt;
var A, B, Suma,
Multiplicacion : Integer;
begin
ClrScr;
Write( 'Introduzca
primer numero (entero): ' );
ReadLn( A );
Write( 'Introduzca
segundo numero (entero): ' );
ReadLn( B );
Suma := A + B;
Multiplicacion := A * B;
if
( Suma > Multiplicacion ) then
Write( 'LA SUMA ES MAYOR.'
)
else
{ Inicio del anidamiento }
if (
Multiplicacion > Suma ) then
Write( 'LA
MULTIPLICACION ES MAYOR.' )
else
Write( 'LA SUMA Y
MULTIPLICACION SON IGUALES.' );
{ Fin del anidamiento }
end.
|