file of "Max of three" is not there
ganeshgupta opened this issue · 1 comments
ganeshgupta commented
finding max among three numbers
a, b, c = input("Enter three Number").split()
if a > b:
if a > c:
print(a, "is Greatest")
elif b < c:
print(c, "is Greatest")
if b > c:
print(b, "is Greatest")
else:
print(c, "is Greatest")
seraph776 commented
I believe this issue us resolved now: Max of Three