Problem
Write a function definition for a function called in Order that takes three arguments of type int. The function returns true if the three arguments are in ascending order; otherwise, it returns false. For example, in Order(1, 2, 3) and in Order(1, 2, 2) both return true, whereas in Order(1, 3, 2) returns false.