Algorithm to find Maximum of two numbers YASH PAL, September 24, 2022March 6, 2023 In this tutorial, we are going to write an algorithm to find the maximum of two numbers. using this algorithm we can write a program to find the Maximum of two numbers in most programming languages like C, C++, Python, and Java programming.[br]Algorithm to find the Maximum of two numbers.1. Read A and B.2. If A > B, then3. Set MAX:=A.4. Else:5. Set MAX:=B.6. [End of If structure]7. Write MAX.8. Exit[br]In the above-given algorithm first, we read two numbers A and B. and then we check if A is greater than B then we set the value of A to the MAX variable else we set the value of B to the MAX variable. after that, we write the value of MAX on the output screen and then Exit from the program.[br]Remember that an algorithm always gives the steps to write a program.[br]Also, ReadAlgorithm to Add [Sum] two numbersAlgorithm to Find Maximum of Three NumbersAlgorithm to Input percentage From user and Print gradeAlgorithm to Print the Series 1 to N using for loopAlgorithm to Print the Series 1 to N using while loopAlgorithm to Print the Series 1 to N using Do While loopAlgorithm to Reverse a given NumberAlgorithm to Find Whether a Number is Prime or NotAlgorithm for Linear Search in ArrayAlgorithm to Calculate Factorial using Function algorithms algorithm