A. maxNum=x if x>y else y B. maxNum=math.max(x,y) C. if(x>y):maxNum=x else:maxNum=y D. if(y>=x):maxNum=y maxNum=x