Problem2180--Increment number

2180: Increment number

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 0  Solved: 0
[Submit] [Status] [Web Board] [Creator:]

Description

Write a function definition for a function called inOrder that takes three arguments of type int. The function returns true if the arguments are in increasing order left to right; otherwise inOrder returns false. For example, inOrder(1, 2, 3) returns true, whereas inOrder(1,3,2) returns false.

Input

takes three arguments of type int

Output

a bool value

Sample Input Copy

1,2,3

Sample Output Copy

True

Source/Category

22