- To find largest number between 2 numbers
User Input: 2,3
Output: 3 is largest
print("Enter two numbers : ", end="")
n1=int(input())
n2=int(input())
if(n1>n2) :
print(n1, end=" ")
else :
print(n2, end=" ")
print("is the largest number")
Enter two numbers : 7 5 7 is the largest numberProgram
Here, we use 2 variables (above code n1
& n2
) to take numbers from the user
Now, check for the largest number using if statement
if(n1>n2) :
# if true print n1
else :
# if false print n2
OR
if(n1<n2) :
# if true print n2
else :
# if false print n1
Concept
Coming Soon !
QuickIn order to succeed you must fail, so that you know what not to do the next time.