Soccerheff918 Soccerheff918 08-02-2024 Computers and Technology contestada What would the output be when the following nested if statements were executed?x = 55y = 13if x % 2 == 0:if y % 2 == 0:print('x-x')else:print('x-y')else:if y % 2 == 0:print('y-x')else:print('y-y')a. x-yb. y-yc. x-xd. y-x