Create a pseudocode that will input values for A and B. Compare two values inputted and print which of the values is higher including the remark “Higher”.
A=input(ValueA)
B=input(ValueB)
if(A>B)
print(A is higher than B)
else
print(B is higher than A)
Comments
Leave a comment