Consider the following code snippet. Based on the code, which of the following options is correct?
```
a = 4
b = 7
c = int(input())
if a > b:
if b > c:
print("A")
elif a > c:
print("B")
else:
print("C")
else:
if b < c:
print("D")
else:
print("E")
```