Below is the program to find the maximum number out of the given three numbers.

n1= int(input("Enter first number : "))
n2= int(input("Enter second number : "))
n3= int(input("Enter third number : "))
if n1>n2 and n1>n3 :
    print(str(n1)+" is biggest number ")
elif n2>n1 and n2>n3 :
    print(str(n2)+" is biggest number ")
elif n3>n1 and n3>2 :
    print(str(n3)+" is biggest number ")
else:
    print("Hey !!! all numbers are equal")
Python program to find maximum number 

Output:

Python program to find maximum number 
Python program to find maximum number 

Explore More

AI Roadmap using Python

Python is a great foundation for diving into AI! To take the next step in your AI learning journey, here’s a roadmap to guide you. 1. Strengthen Your Math Skills

Explain about Hugging Face Transformers

Hugging Face Transformers is a powerful library designed for natural language processing (NLP), computer vision, and audio tasks. It provides state-of-the-art pretrained models and tools for fine-tuning and deploying these

What are Large Language Models

LLM stands for Large Language Model in the context of artificial intelligence. It refers to a type of AI model designed to understand, generate, and manipulate human language on a