Example -
let we have a two number
a=34
b=56
c=23
so we can easily judge that 56 is maximum in all of them
Program to find out the maximum number out of three-
a=int(input("Enter first numbern"))
b=int(input("Enter second numbern"))
c=int(input("Enter third numbern"))
#first way
if a>b and a>c:
print(str(a)+" is maximum")
elif b>c:
print(str(b)+" is maximum")
else:
print(str(c)+" is maximum")
#second way
print(str(max(a,b,c))+" is maximum")
Enter first number
23
Enter second number
34
Enter third number
56
56 is maximum
56 is maximum
print(str(max(list(map(int,input("Enter number in listn").split()))))+" is maximum")
Enter three value
45 23 34
45 is maximum