This is a pseudocode to find greatest among 2 numbers.Here the user enters two numbers and the greatest among the two numbers is found by comparing the two numbers and the result is displayed.Write "Please enter a first number"Read num1Write "Please enter a secondnumber"Read num2If (num1>num2) Write number1 is the Greatest Numberelse If (num2>num1) Write number2 is the Greatest Numberelse Write "number1=number2"we are finding the greatest value among 2 numbers. If else condition statement is used to compare the two numbers and print the greatest value among 2 numbers.