Assume you have an int variable x that has been declared and initialized. Assume the existence of a function named tripled . This function receives an integer and returns three times its value. So, pass tripled 12 and it will return 36. DO NOT DEFINE this function-- just assume it is available. What you must do here is write an expression whose value is twenty-seven times x. In this expression do NOT use any integer literals (like 27) or arithmetic operations (like *). Instead, just use x and function calls to tripled.