Welcome to Westonci.ca, where you can find answers to all your questions from a community of experienced professionals. Explore comprehensive solutions to your questions from a wide range of professionals on our user-friendly platform. Get quick and reliable solutions to your questions from a community of experienced experts on our platform.

Q6. Ask for two numbers. If the first one is larger than the second, display the second number first and then the first number, otherwise show the first number first and then the second.


Sagot :

Answer:

Number1 = input("Choose a number: )

Number2 = input("Choose a second number: )

if number1 > number2:

print(number2\nnumber1)

else:

print(number1\nnumber2)

Explanation:

I'm assuming that you want it in python.