(int a, int b) means that two integers are passed in.
Max () is the function name.
Int max(int a, int b) means to return an integer.
For example:
int y = max(3,4);
You get y = 4.