top of page

Making a Program to Check Smallest Value in Python


Program to Check Smallest Value

#Program by eboostup.com
#Making a Program to Check Smallest Value in Python
n1=int(input("Enter First Number: "))
n2=int(input("Enter Second Number: "))
if n1<n2:
    print(n1,"is Smaller than",n2)
else:
    print(n2,"is Smaller than",n1)
    print("Powered By eboostup")


#eboostup #eboostupindia #ankushdhingra



bottom of page