Computer Science, asked by devrajjadhav111, 2 months ago

Program to accept the users input nd print the greater of two no.s

Answers

Answered by Anonymous
0

Answer:

# Python Program to find Largest of Two Numbers

a = float(input(" Please Enter the First Value a: "))

b = float(input(" Please Enter the Second Value b: "))

if(a > b):

   print("{0} is Greater than {1}".format(a, b))

elif(b > a):

   print("{0} is Greater than {1}".format(b, a))

else:

   print("Both a and b are Equal")

Similar questions