Accepted Answer
Using the knowledge in computational language in python it is possible to write the code that design a flowchart or pseudocode for a program that accepts two numbers from a user and displays Writting the code:firstNum=int(input("enter the firstNum "))secondNum=int(input("enter the secondNum "))First="First is larger"Second="Second is large"Equal="Numbers are equl"if firstNum>secondNum:print(First)elif(secondNum>firstNum):print(Second)else:print(Equal)See more about python at brainly.com/question/18502436#SPJ1