Computer Science, asked by Supa5736W, 1 month ago

write python program to find whether sum of two given numbers is greater than 100​

Answers

Answered by Spssneka
2

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

Explanation:

Plz add brainlist

Similar questions