Twelves Maximum Complete the twelvesMaximum function in the editor, such that given an integer nit returns * ⢠12 when n is less than 12, or 1> #include ... 9 10 * 11 * Complete the 'twelvesMaximum' function below. 12 13 * The function is expected to return an INTEGER. 14 * The function accepts INTEGER n as parameter. 15 */ 16 17 int twelvesMaximum(int n) { 18 19 } 20 21 > int main() ... ⢠The value of n, when n is greater than 12 Example ⢠For n = 1, the output should be twelvesMaximum(n) = 12. ⢠For n = 10, the output should be twelvesMaximum(n) = 12. ⢠For n = 15, the output should be twelvesMaximum(n) = 15. Function Description Parameter(s): n: an integer Returns: int: 12 when n is less than 12 and the number n otherwise Constraints 0 sin s 100