Question 19

Checks if three numbers are in increasing order

Code:

	# Input
	first = input("Please Enter first number")
	second = input("Please Enter second number")
	third = input("Please Enter third number")

	if first < second < third:
	    print("They are in an increasing order")
	else:
	    print("They are not in an increasing order")
	
Charlie M-S