The program should prompt the user to enter two integers. The program should store these
values into variables a and b and compare the two integers entered then say which number is
greater than the other. E.g. If a user enters 20 and 40, the program should say that 40 is
greater than 20. If the values entered are equal the program should display that the first
number is equal to the second number or else display that invalid data has been entered. Use
if else statements to implement your solution.

Respuesta :

Explanation:

Begin

Prompt : please enter & first number:

Please enter & second number:

a number;

b number;

a := first number

b := second number

If (a>b) then

Display (a || 'is grater than' || b) ;

else if (b>a) then

Display (b || 'is grater than' || a) ;

else if (a==b) then

Display (a || 'is equal to' || b) ;

else

Display ('Invalid data has been entered') ;

end if;

End;

Hope it helps!

Hope it helps! Please mark it as brainliest!