Answer:
def printLarger(x: int ,y: int):
print(max(x,y))
Step-by-step explanation:
The function is written in python as follows:
- the fuction printLarger takes two integer parameters x and y
- max() function determines larger value of x and y. If the numbers are the same it prints the value of the numbers as the largest value.
- the function prints the larger value.