Create an algorithm that will input values for A and B. Compare two values inputted and print which of the values is higher including the remark “Higher”.
1
Expert's answer
2021-09-19T17:11:36-0400
Start
Read A
Read B
if A>B then
Print"A is Higher"elsePrint"B is Higher"
Stop
Comments