a = float(input("Enter a: ")) b = float(input("Enter b: ")) if a != b: if a > b: print(a) else: print(b) else: print("Equal")
Equal