Computer Science, asked by diljotsinghdhillon, 11 months ago

write a Python program to find number is greater number in two numbers​

Answers

Answered by charlie1505
16

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")

Answered by yaduvanshikiits
1

Answer:

It is the solution.

I Hope, it will help you!

Attachments:
Similar questions