WHAT IS WRONG IN THIS CODE? MY PC SHOWS NO OUTPUT WHEN C and D ARE LARGER NUMBERS?
a=int(input("ent a no."))
b=int(input("ent a no."))
c=int(input("ent a no."))
d=int(input("ent a no."))
if a>b:
if a>c:
if a>d:
print(" a is greater")
elif b>a:
if b>c:
if b>d:
print("b is greater")
elif c>a:
if c>b:
if c>d:
print ("c bada hai bc")
else:
print("d is greater")
This program shows output when A and B variables have larger number but do not show any output when D and C have larger numbers respectively?