Question: please write the program in python 3 language and make sure it works correctly Write a program that reads three numbers and prints increasing if
please write the program in python 3 language and make sure it works correctly

Write a program that reads three numbers and prints "increasing" if they are in increasing order, "decreasing" if they are in decreasing order, and "neither" otherwise. Here, "increasing" means "strictly increasing", with each value larger than its predecessor. The sequence 344 would not be considered increasing. Sample run 1: Enter the first number: 5 Enter the second number: 8 Enter the third number: 10 The numbers are increasing Sample run 2: Enter the first number: 8 Enter the second number: 5 Enter the third number: 4 The numbers are deccreasing Sample run 2: Enter the first number: 5 Enter the second number: 8 Enter the third number: 4 neither
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
