Python, как проверить, какой int var является наибольшим

if A > B and C and D:
   print("A wins")
if B > A and C and D:
   print("B wins")
Hello There