-
Notifications
You must be signed in to change notification settings - Fork 383
Open
@ganeshgupta
Description
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")
Metadata
Metadata
Assignees
Labels
No labels