Answer:
max(population1, population2)
Explanation:
The function max has already been defined, it takes two parameters and it return the larger of the two parameters.
So, calling max(population1, population2) will return the larger between population1 and population2.
population1 and population2 have already been defined and associated with int values.