Largest of three numbers

x=int(input("enter first number"))
y=int(input("Enter the second number"))
z=int(input("Enter the third number"))
if(x>=y and x>=z):          
    max=x;
elif(y>=x and y>=z):
    max=y;
else:
    max=z;
print(max," is the largest of three  numbers");



OUTPUT:- 


For Other Programs Visit The WebSite:-   https://www.techapurba.com/

Follow Me On Social Media :-

For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/

Post a Comment

0 Comments