Following is a program to find out Largest among the given three numbers :
x= int(input("enter 1st no\n"))
y= int(input("enter 2nd no\n"))
z= int(input("enter 3rd no\n"))
if(x>=y and x>=z):
print(f"{x} is greatest")
elif(y>=x and y>=z):
print(f"{y} is greatest")
else:
print(f"{z} is greatest")x,y,z are integer values



