Write a swift function called findmax to compare between two numbers and return the maximum one. Note that Omit the parameter labels during the function call. The type of required function is: (Int, Int) - > Int (b) Call the function max with values 20, 30 and print the greater one. Solution