diff --git a/largerno b/largerno new file mode 100644 index 0000000..dc14249 --- /dev/null +++ b/largerno @@ -0,0 +1,11 @@ +# 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")