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.