python program to check greatest of three numbers code example
Example: greatest of three numbers in python
a=int(input())
b=int(input())
c=int(input())
#((a>b)?(a>c?a:c):(b>c?b:c))
if(a>b):
if(a>c):
print("a")
else:
print("c")
else:
if(b>c):
print("b")
else:
print("c")